Tagged: Blog, blog comments, blog title, enfold, grid, read more link
Hi Guys,
Any help on this would be really appreciated.
Thanks,
Sorry for the late reply – I missed this post. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and delete:
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
Then replace:
$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt'>".$excerpt."</div>" : "";
with
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt'>".$excerpt."</div>" : "";
Worked Great, thanks for all your help.