Hi guys,
Site: http://embodyproject.com (currently maintenance) can also view at http://codelessme.com/embody
I want to add text below the excerpt that says: Read More…
Text will be white/16px
Where do I add this so it appears on every blog image on hover?
Hi David!
Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and replace
$this->loop[$key]['text_after'] .= $this->loop[$key]['date'];
with
$this->loop[$key]['text_after'] .= $this->loop[$key]['date'];
$this->loop[$key]['content'] .= '<div class="read-more-link"><a href="'.get_permalink($id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
Best regards,
Peter
Thanks Peter. Solved