Hi,
in mansory as well as articles display the category of each article is not displayed.
In Enfold option — the item “Blog post category” is checked, where else I can control this metadata?
Thank you,
Giulia
Hey julia_usn,
Thank you for the inquiry.
You may need to set the Enfold > Blog Layout > Blog Styling settings to Modern Business, or add use the avf_postslider_show_catergories filter in the functions.php file to display the category.
add_filter("avf_postslider_show_catergories", function($display) {
$display = "show_business";
return $display;
}, 10, 1);
Best regards,
Ismael