Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1221885

    Hi,
    How can i change the display or don’t display all posts in the same page in category :

    best regards
    cm

    • This topic was modified 4 years, 4 months ago by ChrisCoach.
    #1222781

    Hey ChrisCoach,

    Please have a look at the following thread:
    https://kriesi.at/support/topic/category-archive-page-change-layout-to-show-excerpt/#post-459206

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1225937

    Hi,
    it is ok for category I used
    add_filter(‘avf_blog_style’,’avia_change_category_blog_layout’, 10, 2);
    function avia_change_category_blog_layout($layout, $context){
    if($context == ‘archive’) $layout = ‘blog-grid’;
    return $layout;
    }

    but it is not mansonry display.

    And How can I do to display labels (not only for category) post display :

    I used :
    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’);

    it is better but it is not mansonry display ?

    regards

    #1226481

    Hi ChrisCoach,

    Please have a look at the following thread:

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1226686

    Hi,
    Thank you but it doesn’t work.
    I didn’t modifiy archive.php because it I’ll change it I will lost this changement when I update the template.

    Regards
    cm

    #1226832

    Hi ChrisCoach,

    You need to use a child theme, copy the file there, and make changes in the child theme.

    There is no other solution.

    Best regards,
    Victoria

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