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.
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
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.
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