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

    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”> ?

    #347918

    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

    #348720

    Jees! Thank you :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Post date above post title’ is closed to new replies.