• Hiya- I posted here earlier and got some help- but my helper had to leave. =o( My website is https://leavesofivy.com and I installed a Lazy gallery and everything should be working- but the images are broken. I need someone to look and tell me where i screwed it up. Thanx.

Viewing 15 replies - 16 through 30 (of 33 total)
  • Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    Well I’m very glad that you have found out whats wrong. Sadly- I dont know what I’m supposed to do to fix what you said was wrong…have I mentioned I know nothing of any of these codes?

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    And I just realized something else. When you saw my site and were able to click on the “invisible” image I wsa testing a new theme. When I went back ot my old theme, there is no longer an ‘invisible’ image, and this way you cant get to the image at all.

    Well I hear you re: code but just jump in, ya gotta learn sometime. It aint hard:) Look for this:

    ./wp-content/plugins/lazy-gallery/lazy-style.css

    Try changing it to the full directory path like so:

    https://leavesofivy.com/WORDPRESS/wp-content/plugins/lazy-gallery/lazy-style.css

    or :

    /wp-content/plugins/lazy-gallery/lazy-style.css

    Notice I just remove the period in front of /wp-content. I dont know where you need to change this cuz I dont use this plugin but chances are there is a config.php or settings.php file or something similiar. Its trying to pull the css file it needs but until the path is correct you’ll have this problem.

    Rob

    I had issues with the sidebar not showing in about 1/2 the templates I used. I added this line: <?php get_sidebar(); ?> right after this line: <?php get_header(); ?> into the lazy-index.php file.

    Ok, I think this is your problem, you have nested two lazy-gallery folders. Your .css file is really at https://leavesofivy.com/WORDPRESS/wp-content/plugins/lazy-gallery/lazy-gallery/lazy-style.css

    You need to move the two files in that second lazy-gallery folder up to the lazy-gallery folder above it. Cheers.

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    Sigh. I’m sorry to be such a bother- you all have been so helpful and you must feel like you are talking to a wall. What files am I moving to what folder? (oh, and thanx for the tip about the sidebar)

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    Thankyou again for the sidbar tip- but whe I do it, it keeps the sidebar…but starts the gallery underneath the sidebar.
    Here’s a link https://leavesofivy.com/WORDPRESS/lazy-index.php

    Not a problem. You have two files in the folder at: /plugins/lazy-gallery/lazy-gallery/

    They are lazy-style.css and lazy-img.php. Move those two file out of that folder and put them in the folder at: /plugins/lazy-gallery/

    On the sidebar thing, that should fix once the code can find the lazy-gallery stylesheet, which will be solved when you move it and its comapnion file to the proper directory as per above.

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    ::tears of joy::: This is me, worshiping th ground that all of you walk on. =o) IT shows the images no! wOOt! =o)

    But- there is bad news….

    It still shows up under the sidebar. =oD So if that one quirk could be fixed- I would be eternally grateful as an artist and a computer user.
    https://leavesofivy.com/WORDPRESS/lazy-index.php

    you can try putting the sidebar code <?php get_sidebar(); ?> after the code you use to call the gallery. So for example try putting it above the call to the footer and below the call to the gallery.

    Something like:

    <?php get_gallery ?>
    <?php get_sidebar ?>
    <?php get_footer ?>

    Give it a go and you’ll find it:)

    Best of luck,

    Rob

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    Sadly- I cannot find those things in the file. Would it be right in the Lazy gallery Php?

    If you go to https://www.jwurster.us/wordpress/ and click on the Lazy Gallery link in the right sidebar, you’ll see how I have modified the lazy-index.php file to work with the look of my site.
    jim

    Your lazy-index.php should probably work if it looked like this:

    <?php
    /* Don’t remove this line. */
    require(‘./wp-blog-header.php’);
    ?>

    <?php get_header(); ?>
    <?php get_sidebar(); ?>
    <!– <link href=”./wp-content/plugins/lazy-gallery/lazy-style.css” rel=”stylesheet” type=”text/css” /> –>

    <style type=”text/css”>
    <?php include(“./wp-content/plugins/lazy-gallery/lazy-style.css”); ?>
    </style>

    <div class=”narrowcolumn”>
    <div id=”gallery”> <br/>
    <br/>
    <?php showGallery();?>
    </div>
    </div>

    <?php get_footer(); ?>

    The only change I made was to move one line. I moved the line “<?php get_sidebar(); ?>” up to right below “<?php get_header(); ?>” I hadd the same problem and this worked for me. Your mileage may vary.

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    Well, thankyou so much for your help. But it didn’t work. I moved the sidebar code right under the header code (so it looks ust like xyths) and its still doing it. Growl. I’ve gotten everytihng else to work properly- its just this one thing I need and then the site is done.
    https://leavesofivy.com

Viewing 15 replies - 16 through 30 (of 33 total)
  • The topic ‘My Lazy gallery is being LAZY’ is closed to new replies.