Post list is showing excerpts only despite selecting 'show full text'
-
Topic
-
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The forum ‘Alyeska Responsive WordPress Theme’ is closed to new topics and replies.
This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.
Tagged: custom layout, post list, Theme Options
Hi.
Our client has a custom page layout including a post list in a column. The post list is set (in Theme Options) to show full text, and it used to do so, but it is now showing excerpts only. The site user says they have not made any changes, and it just suddenly stopped working how they wanted it.
I thought it might be to do with the recent updates, so have updated to Alyeska 3.1.5 (they’d updated the plugins but not the theme). I’ve also tried deactivating and reactivating all installed plugins, in case it was a conflict, but that hasn’t resolved it. I’ve tried playing with various combinations & configurations in Theme Options, but just can’t get it to display full text rather than excerpts in the post list. Any suggestions?
Hello,
This option was removed from the [post_list] shortcode for safety reasons, so people don’t end up in infinite loop. There are probably several workarounds, but they would only be possible through child theme customizations.
For example, one easy workaround I can think of would be to copy content-list.php to your child theme, and then change:
<?php themeblvd_blog_content( themeblvd_get_att( 'content' ) ); ?>
To:
<?php the_content(); ?>