• is did use this solution given by AI1EC
    /* Please paste it to your WordPress theme functions.php
    DON’T FORGET TO SAVE PERMALINKS SETTINGS.
    */
    function __ai1ec_custom_slug_name( $translations, $text, $domain ) {
    if (
    AI1EC_PLUGIN_NAME !== $domain ||
    ‘event’ !== $text
    ) {
    return $translations;
    }
    return ‘ai1ec-event’;
    }
    add_filter( ‘gettext’, ‘__ai1ec_custom_slug_name’, 10, 3 );
    – Apparently it conflicts with my divi library, so i I removed it from the function.php
    but now it results in “page not found” for the events
    any help on this?

    • This topic was modified 6 years, 9 months ago by NoWe.

The topic ‘Event Slug change’ is closed to new replies.