• Kovah

    (@kovah)


    Hello,
    we separated the WordPress core functionality from the plugins and themes. The plugin does not work with this custom folder structure because of a strange url rewriting of the plugin:

    Failed to load resource: the server responded with a status of 404 (Not Found)
    Failed to load: domain.com/core/nt/plugins/slideshow-gallery/js/tinymce/editor_plugin.js

    where core is the WordPress core folder, the correct one would be content.
    Every other plugin is working except this one.

    https://wordpress.org/plugins/slideshow-gallery/

Viewing 1 replies (of 1 total)
  • Thread Starter Kovah

    (@kovah)

    The error is in slideshow-gallery.php, line 232.
    Instead of
    $plugins['gallery'] = $this -> url() . '/js/tinymce/editor_plugin.js';
    you should use the plugins_url() function:
    $plugins['gallery'] = plugins_url('/js/tinymce/editor_plugin.js', __FILE__);

Viewing 1 replies (of 1 total)

The topic ‘Complete editor broken if not using the standard’ is closed to new replies.