How can I move the date above post title tag <div class=”slide-meta”> above title tag <h3 itemprop=”headline” class=”slide-entry-title entry-title”> ?
Hey jusupof!
Try opening up /enfold/config-templatebuilder/avia-shortcodes/postslider.php and move lines 370 – 373,
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
$output .= '</header>';
Down to line 389 so they display right above this,
$markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
Cheers!
Elliott
Jees! Thank you :)