Tagged: 

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

    Hey there,
    I can’t find a way to display the post’s author in the Post Slider.
    Any solution?

    Thanks a lot
    Tommaso

    #481498

    Hi tom_boz!

    Around line 400 in the /enfold/config-templatebuilder/avia-shortcodes/postslider.php file you should see this.

    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    Try adding this beneath it.

    $output .= '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
    $output .= '<span class="vcard author"><span class="fn">';
    $output .= get_the_author_link();
    $output .= '</span></span>';
    $output .= '</span>';
    $output .= '</span>';
    

    Best regards,
    Elliott

    #481975

    Hey Elliott,
    thanks for your help.
    Unfortunately the code is not working properly, all the posts turn out to be written by the same author (and this is not true of course).
    Any idea on how to solve this?
    thanks again
    Tommaso

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