Tagged: post slider
Hey there,
I can’t find a way to display the post’s author in the Post Slider.
Any solution?
Thanks a lot
Tommaso
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
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
Hi!
Sorry, see here, https://kriesi.at/support/topic/remove-and-edit-meta-data-under-post-in-blog-posts-view/#post-482710.
Regards,
Elliott