Tagged: enfold
Hi there,
Is there a way to enable shortcodes for Enfold search results pages?
I currently use shortcodes in the excerpt text of posts which outputs correctly on all other index, category, tag pages. But on search results pages it returns the code.
I have already edited the loop-search.php file to contain $excerpt = do_shortcodes( get_the_content() ); But this has had no effect.
Thank you for your help.
Hey DougMcKerson,
Thank you for using Enfold.
Did you add custom excerpts or use the more tag? Add this in the functions.php file if you use the custom excerpt:
add_filter('the_excerpt', 'do_shortcode');
Best regards,
Ismael
Hi Ismael,
Thank you! That worked.
I am using custom excerpts so that I can customize the text for each ‘read more’ link via the shortcode.
Thanks again, this ticket can be closed.
Best,
Doug