Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #259506

    Hi,
    Firstly I’d like to congratulate you on the cool theme, I find it very useful and flexible, but… :)

    I have a question,
    how to add category-name to class in article tag in Grid Layout ?
    To something like that e.g:
    <article class='... category-name ...' itemscope="itemscope" itemtype="http://schema.org/BlogPosting">

    It is added by default in other blog layouts like multi and single-author layouts.

    Thanks, Sebastian

    #259680

    Hi Sebastian!

    Thank you for using the theme!

    Please edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 364:

    $markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
    					$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";

    Replace it with this:

    $gridcat = get_the_category($the_id);
    					$gridclass = strtolower($gridcat[0]->cat_name);
    
                        $markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
    					$output .= "<article class='slide-entry flex_column {$style} {$gridclass} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";

    Cheers!
    Ismael

    #259687

    Thanks!
    It works perfectly well ! :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Category-name in class in article tag in Grid Layout blog style.’ is closed to new replies.