Hi,
How can i change the display or don’t display all posts in the same page in category :
best regards
cm
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
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
Hi ChrisCoach,
Please have a look at the following thread:
If you need further assistance please let us know.
Best regards,
Victoria
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
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