Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1256458

    Hello

    I’m having issues finding a way to show the “Categories” with the layout I currently have, I want the blog feed to have the current layout, 3 columns with a large image, and read more text with link but also add the categories.

    Browse down to the “Latest News” section on the home page – https://ufcw5.org/

    I would like to add the tags/categories to each latest news post on the HomePage?

    Thanks
    B

    #1257850

    Hey schwabino,

    Thank you for the inquiry.

    We could enable the post categories by adding this snippet or filter in the functions.php file.

    add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
    function avf_postslider_show_catergories_mod($category) {
     	$category = 'show_business'; // or show_elegant
    	return $category;
    }

    Default value is “use_theme_default”.

    Best regards,
    Ismael

    #1258097
    This reply has been marked as private.
    #1258703

    Hi schwabino,

    Well, yes, it is better to have the child theme and add this code there.

    Here are the docs for you:

    If you need further assistance please let us know.
    Best regards,
    Victoria

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