Tagged: ALB, blog post, categories, grid, minor meta
How to show categories in ALB element “postslider” (blog posts in grid mode; Business blog style)?
Obviously this filter is still not implemented in v4.3 of ENFOLD as Ismael stated here?
https://kriesi.at/support/topic/blog-posts-element-not-showing-categories-anymore/#post-779755
– see the whole post there. Or have I overseen something?
Hey Gitte,
This filter is there, have you tried the code from the thread?
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria
Hi,
when you say “the filter is there” (where?), why do I need then the code from the thread? Is it obsolete now with v4.3?
Hi,
The default business blog style doesn’t render categories by default so you have to use the filter to enable the category container.
add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
function avf_postslider_show_catergories_mod($category) {
$category = 'show_business';
return $category;
}
Best regards,
Ismael