Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #687083

    I would like to increase the number of posts the magazine element shows (seems to be 40). How would I go about increasing that number?

    Thanks in advance.

    #688278

    Hey advteksol!

    Thank you for using Enfold.

    This is the standard posts limit and adding more will probably kill the page or prevent it from loading properly. If you really need to increase the number of items, use this in the functions.php file:

    add_filter('avf_magazine_entries_query','avf_magazine_entries_query_mod', 10, 2);
    function avf_magazine_entries_query_mod($query, $params) {
    	$query['posts_per_page'] = 80;
    	return $query;
    }

    Regards,
    Ismael

    #688519

    It seems to work with no issues so far. Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Magazine Element Only Shows 40 Post’ is closed to new replies.