Hello, I'm trying to show an advertisement in the description of the event by means of a shortcode from another plugin (Advanced Ads), but in the frontend it is not shown, only shortcode text appears but it does not work. What can I do to make it work?
Hello, I'm trying to show an advertisement in the description of the event by means of a shortcode from another plugin (Advanced Ads), but in the frontend it is not shown, only shortcode text appears but it does not work. What can I do to make it work?
Hi,
Try following.
Open your theme functions.php file and add this filter:
add_filter('stec_get_description', function($desc) { return do_shortcode($desc); });Stachethemes Developer