Okay
  Public Ticket #1901793
Insert Shortcodes
Closed

Comments

  • Grande2018 started the conversation

    Hi There,

    Is it possible to appear third party shortcodes in the events description? I paste a Contact form 7 shortcode but unfortunatelly, it didn't appear. I almost want to paste a review shortcode, but I run in to the same issue.

    Many thanks for your help!
    Best Regards,

  •  877
    Zhivko replied

    Hi,

    Try adding this filter in your theme functions.php file at the bottom:

    add_filter('stec_get_description', function($desc) {
       return do_shortcode($desc); 
    });

    Stachethemes Developer