• The [embed] shortcode in the content doesn’t work.

    The problem is with the code on line 431 in event-list/includes/sc_event-list.php.

    $content = $event->truncate(do_shortcode(wpautop($content)), $a['content_length'], $this->single_event, true, $truncate_url);

    The do_shortcode just removes the [embed] shortcode.

    I don’t if it’s a proper fix, but if I add $GLOBALS['wp_embed']->run_shortcode before the do_shortcode call, the embedded video shows up.

    $content = $event->truncate(do_shortcode($GLOBALS['wp_embed']->run_shortcode(wpautop($content))), $a['content_length'], $this->single_event, true, $truncate_url);

    • This topic was modified 8 years, 3 months ago by grego87.
    • This topic was modified 8 years, 3 months ago by grego87.
    • This topic was modified 8 years, 3 months ago by grego87.

The topic ‘[embed] shortcode’ is closed to new replies.