Under Settings -> Reading Settings -> “For each article in a feed, show” tick box can be set to Full text or Summary. When I switch to Summary, it still shows the full text. The page below only displays the full text of each post no matter what the setting above.
Any help would be greatly appreciated.
Hi divisionx!
You can simply click on “Insert More Tag” to add read more button to your blog posts http://i.imgur.com/4RmtaLS.jpg
Cheers!
Yigit
I am grateful for your speedy response and I understand you get many messages per day so it is not easy I had already found your current answer in a previous post and it did not answer my question. When we bought the theme we already had hundreds of posts so although your suggestion will work it will only work by doing this for each post individually. The default WordPress settings make this possible via selecting a radio button option and clicking the save button. If this is the only solution for Enfold, we will create a solution within our child theme, otherwise please let me know if there is any other solution.
Thanks in advance.
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function change_blog_archive_style() {
global $avia_config;
if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
}
add_action('get_header', 'change_blog_archive_style');
Cheers!
Josue
Your help is much appreciated. I was hoping to find good support for these themes and I am glad this is the case.
Thanks Yigit and Josue!
You are welcome, glad we could help :)
Regards,
Josue