Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1422103
    Mahesh
    Guest

    Hi,
    How can I add a Read More Button after excerpt on ctaegory archive pages.

    #1422107

    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

    #1422109

    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!

    #1422112

    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

    #1422113

    It is showing because I have changed it in the loop. But all good, it is fixed now.

    Thanks!

    #1422188

    Hi,

    Great! Glad to know that this has been fixed. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Add Read More Button after excerpt on ctaegory archive pages.’ is closed to new replies.