Okay
  Public Ticket #1868044
Shortcodes of other plugins
Closed

Comments

  • Ropdesign started the conversation

    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?

  •  877
    Zhivko replied

    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