Hi,
How can I add a Read More Button after excerpt on ctaegory archive pages.
Hi!
Thank you for the inquiry.
You can use this hook in the functions.php file to add a read more link to the archive or category pages.
function ava_blog_archive_style() {
global $avia_config;
if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
}
add_action('get_header', 'ava_blog_archive_style');
Best regards,
Ismael
Hi Ismael,
unfortunately this is not working./
I already have added this code to change the layout a bit https://prnt.sc/P_fgZp9v8ohJ
Thanks!
Hi,
Thank you for the update.
The “read more” link in the posts is displaying correctly on our end. Please make sure that you’ve cleared the cache and performed a hard refresh.
Best regards,
Ismael
It is showing because I have changed it in the loop. But all good, it is fixed now.
Thanks!