Okay
  Public Ticket #1811196
Shortcode in Event
Closed

Comments

  • inardo started the conversation

    I'm trying to add a shortcode (from another plugin) into the information section within an event. However the editor automatically puts <p></p> tags around the shortcode.  Is there a way to stop it from doing that?

  •  877
    Zhivko replied

    Hi,

    Try following:

    Open file stachethemes_event_calendar\admin\class\o.event.php on line 232 remove wpautop:

    return wpautop(apply_filters('stec_get_description', $this->description));

    return apply_filters('stec_get_description', $this->description);



    Stachethemes Developer