icons for link & quote posts do not show… (just empty space…)
check here : http://tasoskoukouvitis.com/enfold2/blog/blog-single-author-full/
any ideas how to fix it?
any news on this issue plz?…
Hi,
Edit the Blog Post element, choose Multi Author for Blog Style.
Or go to Enfold > General Settings > Blog Style, choose Multi Author.
Regards,
Ismael
hey,
i do not talk about author avatars… the icons for post formats are NOT shown in the blog single author (page template or page element)
please compare :
– your demo page : http://kriesi.at/themes/enfold/blog/blog-single-author-full versus
– my demo page : http://tasoskoukouvitis.com/enfold/blog/blog-single-author-full
do u understand? please check what’s wrong…
thx!
any news on this please?
Hi,
Sorry for that.
Edit includes > loop-index.php, find this code
if(strpos($blog_style, 'multi') !== false)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== false)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}
Below, add this code
if(strpos($blog_style, 'multi') !== true)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== true)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}
Regards,
Ismael