Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dohnutt

    (@dohnutt)

    It should be noted that Carousel doesn’t work either.

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    The problem seems to be linked to your theme. Some elements appear to be missing from your footer.php file. It can cause issues with all plugins using the wp_footer() action to hook stylesheets or javascript files to your site.

    Could you check that file, and make sure that the last few lines are as follows:

    <?php wp_footer(); ?>
    </body>
    </html>
    Thread Starter dohnutt

    (@dohnutt)

    Alright, I see the problem. For some reason, in the full-width-page template, there wasn’t a link to the footer. I added it and it works now. Thanks so much!

    One more thing: Is there a way to make the gallery bigger on the page?

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    You can change the width of the gallery by defining a $content_width value for your theme. You can do so by adding the following to your functions.php file:

    if ( ! isset( $content_width ) )
    	$content_width = 625;
    Thread Starter dohnutt

    (@dohnutt)

    Thanks!

    Unfortunately, when I do that, I get a server error and I can’t access any part of my website.

    I am using a child theme of the “Responsive” theme. I copied the functions.php file from the main Responsive theme to the child theme and added that line, and it breaks.

    Even without that line, it breaks. Just having the functions.php file makes it break.

    Also note that I am using Multisite (just set it up this morning). I don’t know if that has anything to do with it.

    Thanks so much for your help 🙂

    Thread Starter dohnutt

    (@dohnutt)

    Oh, silly me. I was using the wrong functions.php file 🙂

    Also, I tried adding it to the child theme and it didn’t work. I had to do it on the parent theme. Not sure why, but it works now.

    Thanks so much!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Tiled Gallery Not Working’ is closed to new replies.