• Resolved citepaul

    (@citepaul)


    I’ve encountered problems using this plugin when trying to import a feed with many events. After a bit of debugging it seems there’s a possible problem when importing events with characters such as ampersands in the title.

    Within Ess_Import.php, line 342:

    foreach( $_POST['event_categories'] as $category_name )
    {

    Needed changing to:

    foreach( $_POST['event_categories'] as $category_name_unescaped )
    {
            $category_name = htmlentities($category_name_unescaped);

    This solved the problem for us.

    https://ww.wp.xz.cn/plugins/events-manager-ess/

The topic ‘Problem during import? Potential solution’ is closed to new replies.