• Resolved tgelles

    (@tgelles)


    Any suggestions for getting this to work on a multisite site with mapped domains?

    When a user clicks on the thumbnail, it opens the image and not the lightbox, as the images are being served via the host url via the shortcode function.

    For example, [gallery columns="6" ids="6034,6035,6036" orderby="rand"]

    Will display images with a url of example.com/wp-content/uploads/sites/2/...

    When in order for the lightbox js to kick in, they need to be something like: mywebsite.com/wp-content/uploads/sites/2/...

    A live example can be seen here

    Thoughts?

    https://wordpress.org/plugins/zurb-foundation-5-clearing-gallery/

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

    (@tgelles)

    So I discovered a function that changes the uploads directory:

    function my_mapped_upload_url() {
        return get_site_url() . '/wp-content/uploads' ;
    }
    add_filter( 'pre_option_upload_url_path', 'my_mapped_upload_url' );

    Would recommend anyone who has a similar setup to do the same.

    Is working now!

Viewing 1 replies (of 1 total)
  • The topic ‘Working on Mapped Domains?’ is closed to new replies.