Hi,
The theme doesn’t have this option. Please check those topics https://wordpress.org/support/topic/make-post-excerpt-clickable/ -> https://wordpress.org/support/topic/how-to-make-excerpt-text-clickable/
Thank you!
Hi,
For customization and other services, you can contact our custom work team here: https://tagdiv.com/premium-customization-services/.
Thank you for understanding!
Hey, we did it ourselves:
Previous Code:
$excerpt = '<div class="td-excerpt">';
$excerpt .= $this->get_excerpt($excerpt_length);
$excerpt .= '</div>';
Working Code:
$excerpt = '<div class="td-excerpt">';
$excerpt .= 'href . '" title="' . $this->title . '">';
$excerpt .= $this->get_excerpt($excerpt_length);
$excerpt .= '';
$excerpt .= '</div>';
Maybe you could forward that to the devs and add it as an option – it works great!
Thanks =)
Hi,
If you use Flex blocks, you need to do the change in wp-content/plugins/td-composer/legacy/Newspaper/includes/modules/td_module_flex_1.php -> https://pastebin.com/rg7Enq2e -> https://i.imgur.com/7Q3c6CG.png
If you want it on all blocks, search for it in the files.
Thank you!