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

    Hello.

    Into my blog, I have a right sidebar with Categories widget in it. When I click on any category, the complete posts (Image + Title + the whole text) are displayed together, one post following another and so on.

    I would like to see only image and title (as I have configured blog grid columns), filtered by category.

    In other site I own, it works well, however I have not found the diference out between both.

    Thank you.

    #1251778
    This reply has been marked as private.
    #1252016

    Hi,

    Thanks for the login details. I changed the Columnas de la grilla del Blog setting to only display the title, and that is working. Please review your site.

    Best regards,
    Rikard

    #1253357

    Hello Rikard.

    I guess I could not explain my self. Please follow these steps to see what I’m trying to say:

    1. Go to https://ceramicazimbron.com/articulos/
    2. scroll down a little. Below slider you will see 3 column entries and a right sidebar.
    3. Into the sidebar click on any category. For example on “Cerámica”.
    4. Then see what happens. Instead filtered titles, 3 COMPLETE posts (one following each) are displayed. I need the same three column view, just filtered by the corresponding category. That’s it.

    I would like to get the same effect than here:

    I hope this explanation results clearer.

    Thank you.

    #1255301
    This reply has been marked as private.
    #1255827

    Hi ezimbron,

    Here is the code you can put in your funtions.php

    
    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;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

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