Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #263420

    Hi,

    How do I costumize the “archive for month” archive page. The only option I have found are the restricted options under “Theme Options” >”Blog”. I need to be able to choose “extract and read more” – but this option does not exist here and the whole post i showing (too much for what I need)..

    Se example:
    http://oslocancer.wpengine.com/?m=201404&cpkultimatearchive=2 (hosted on WPengine)

    Please advice:)

    Elise

    #263752

    Hi Elise!

    Thank you for using the theme!

    Please add this on functions.php to decrease the excerpt length on archive pages:

    add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
    
    function avf_increase_postgrid_excerpt_length($prepare_excerpt) {
    	if(is_archive()) {
    	$prepare_excerpt = 60;
    	}
    	
    	return $prepare_excerpt;
    }

    Default value is 60, you can adjust the value if you want.

    Best regards,
    Ismael

    #263889

    Great thanks – how do I remove the text from the article – I just want the exerpt?

    Elise:)

    #265641

    Hey Elise!

    Have you set the excerpt here?

    Cheers!
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.