Viewing 2 replies - 1 through 2 (of 2 total)
  • Josh Feck

    (@builtbynorthby)

    Hi,

    I checked the source of the page you need help with, and I can see that the slash is missing at the point where EE builds the URL using a constant to provide the slash. In other words, one of the URLs in question is put together with:

    define('TICKET_SELECTOR_ASSETS_URL', plugin_dir_url(__FILE__) . 'assets' . DS);

    and

    if (! defined('DS')) {
        define('DS', '/');
    }

    So it seems there’s another plugin on your site or code running elsewhere that’s already defined DS to return an empty string.

    What you could do is install the Health Check plugin and use its troubleshooting mode to selectively deactivate other plugins (they’ll only deactivate for you, the admin when you use troubleshooting mode). This will help narrow down what’s causing this.

    You might also check the site’s wp-config.php file to see if DS is already defined there.

    Thread Starter panalojordan

    (@panalojordan)

    yes you’re right, it’s a plugin conflict. it’s fixed now. thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘JS and CSS not found – no slashes on folder links’ is closed to new replies.