• This is kind of a two part question…

    First, I received the above error because I’ve activated your plugin on an subdomain blog of a WPMU installation. If you’re not familiar with WPMU, there is no /uploads/ directory under /wp-content/. Uploads are put under the /blogs.dir/blogid/files/year/month/ directory. So, I simply created the /uploads/slideshow-gallery/ structure under the main wp-content directory and the warning went away. I uploaded a couple custom slides using the plugin interface and they uploaded fine. So, I thought I was good to go, but…

    …a couple things. First, I cannot get the slideshow to display with the template hardcode from your site:

    <?php
    
    if (class_exists(‘Gallery’)) {
        $Gallery = new Gallery();
        $Gallery -> slideshow($output = true, $post_id = null);
    }
    
    ?>

    I tried using your shortcode and that works great. I don’t understand why the

    Also, while writing this, I realized that even if this did work, I’d get into trouble eventually when using the plugin on other subdomain blogs on this installation because all of these images would be saved in the /wp-content/uploads/slideshow-gallery/ directory. I quickly imagined how messy this would get as I added more blogs on this installation.

    1. Can you think of any reason why the hardcoding wouldn’t work?

    2. Can you please consider making the directory paths compatible with MU? I would imagine this would be a proactive step since the WP/WPMU merge is coming very soon.

    Thanks for your time:)

    https://www.ads-software.com/extend/plugins/slideshow-gallery/

Viewing 1 replies (of 1 total)
  • Thread Starter Adam W. Warner

    (@awarner20)

    An update to the part where I can’t get it working while hardcoded into my theme file…

    I tried wrapping up the shortcode like this:

    <?php echo do_shortcode ('[slideshow custom=1]');?>

    …and it displays the black slideshow window and left and right buttons, but no images. If I use the same [slideshow custom=1] shortcode inside a post or page, the images are there as expected.

    What could be the problem?

    Here’s a link to the one with the hardcoded shortcode:
    https://seertalkradio.com/

    Here’s a link to the one using just the shortcode in a page:
    https://seertalkradio.com/about/

Viewing 1 replies (of 1 total)
  • The topic ‘Using on WPMU – “slideshow-gallery” cannot be created inside “wp-content/uploads’ is closed to new replies.