Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Addons
  3. Lightbox add-on not working after 3.0.0 update

Lightbox add-on not working after 3.0.0 update

Scheduled Pinned Locked Moved Addons
18 Posts 6 Posters 559 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gauchedamned
    wrote on last edited by
    #1

    Since updating to 3.0.0 the lightbox add-on is not functioning.
    Please advise,
    www.williameadon.com
    Thank you!
    William

    1 Reply Last reply
    1
    • M Offline
      M Offline
      mtzonev
      wrote on last edited by
      #2

      Same here !!!!!

      1 Reply Last reply
      1
      • S Offline
        S Offline
        Subliner
        wrote on last edited by
        #3

        Same here too :(

        1 Reply Last reply
        1
        • arminunruhA Offline
          arminunruhA Offline
          arminunruh
          Global Moderator
          wrote on last edited by
          #4

          can you please go to lay options -> custom css & html and then change your custom code.

          instead of "$" please use "jQuery".

          so this:

              $(window).on("scroll", function () {
             if ($(this).scrollTop() > 5656) { // distance at which the menu dissapears
              $('.sitetitle.txt').fadeOut(800);
              $('.laynav.primary').fadeOut(800);
             } else {
              $('.sitetitle.txt').fadeIn(800);
              $('.laynav.primary').fadeIn(800);
             }
          

          would then look like this:

              jQuery(window).on("scroll", function () {
                 if (jQuery(this).scrollTop() > 5656) { // distance at which the menu dissapears
                  jQuery('.sitetitle.txt').fadeOut(800);
                  jQuery('.laynav.primary').fadeOut(800);
                 } else {
                  jQuery('.sitetitle.txt').fadeIn(800);
                  jQuery('.laynav.primary').fadeIn(800);
                 }
          
          G S 3 Replies Last reply
          0
          • arminunruhA arminunruh

            can you please go to lay options -> custom css & html and then change your custom code.

            instead of "$" please use "jQuery".

            so this:

                $(window).on("scroll", function () {
               if ($(this).scrollTop() > 5656) { // distance at which the menu dissapears
                $('.sitetitle.txt').fadeOut(800);
                $('.laynav.primary').fadeOut(800);
               } else {
                $('.sitetitle.txt').fadeIn(800);
                $('.laynav.primary').fadeIn(800);
               }
            

            would then look like this:

                jQuery(window).on("scroll", function () {
                   if (jQuery(this).scrollTop() > 5656) { // distance at which the menu dissapears
                    jQuery('.sitetitle.txt').fadeOut(800);
                    jQuery('.laynav.primary').fadeOut(800);
                   } else {
                    jQuery('.sitetitle.txt').fadeIn(800);
                    jQuery('.laynav.primary').fadeIn(800);
                   }
            
            G Offline
            G Offline
            gauchedamned
            wrote on last edited by
            #5

            @arminunruh Thanks! that worked with my custom code for menu fade out, and with update lightbox addon is now back up. Still one problem though. With Lightbox addon, it is only displaying "every other" image. So, skipping one image in between views. Please advise.
            Thanks for your help!
            -W

            1 Reply Last reply
            0
            • arminunruhA arminunruh

              can you please go to lay options -> custom css & html and then change your custom code.

              instead of "$" please use "jQuery".

              so this:

                  $(window).on("scroll", function () {
                 if ($(this).scrollTop() > 5656) { // distance at which the menu dissapears
                  $('.sitetitle.txt').fadeOut(800);
                  $('.laynav.primary').fadeOut(800);
                 } else {
                  $('.sitetitle.txt').fadeIn(800);
                  $('.laynav.primary').fadeIn(800);
                 }
              

              would then look like this:

                  jQuery(window).on("scroll", function () {
                     if (jQuery(this).scrollTop() > 5656) { // distance at which the menu dissapears
                      jQuery('.sitetitle.txt').fadeOut(800);
                      jQuery('.laynav.primary').fadeOut(800);
                     } else {
                      jQuery('.sitetitle.txt').fadeIn(800);
                      jQuery('.laynav.primary').fadeIn(800);
                     }
              
              G Offline
              G Offline
              gauchedamned
              wrote on last edited by
              #6

              @arminunruh Just noticing now.. It is only skipping "every other" when I am using arrow keys on my keyboard to navigate, which is what i usually do. Seems to function fine when i am using mouse to advance.

              1 Reply Last reply
              0
              • Q Offline
                Q Offline
                qua7
                wrote on last edited by
                #7

                same here!

                1 Reply Last reply
                0
                • arminunruhA arminunruh

                  can you please go to lay options -> custom css & html and then change your custom code.

                  instead of "$" please use "jQuery".

                  so this:

                      $(window).on("scroll", function () {
                     if ($(this).scrollTop() > 5656) { // distance at which the menu dissapears
                      $('.sitetitle.txt').fadeOut(800);
                      $('.laynav.primary').fadeOut(800);
                     } else {
                      $('.sitetitle.txt').fadeIn(800);
                      $('.laynav.primary').fadeIn(800);
                     }
                  

                  would then look like this:

                      jQuery(window).on("scroll", function () {
                         if (jQuery(this).scrollTop() > 5656) { // distance at which the menu dissapears
                          jQuery('.sitetitle.txt').fadeOut(800);
                          jQuery('.laynav.primary').fadeOut(800);
                         } else {
                          jQuery('.sitetitle.txt').fadeIn(800);
                          jQuery('.laynav.primary').fadeIn(800);
                         }
                  
                  S Offline
                  S Offline
                  Subliner
                  wrote on last edited by
                  #8

                  @arminunruh I don´t have any $ in my custom code & css. Only css and the gtag google code. Another idea to check?

                  Thanks!

                  G 1 Reply Last reply
                  0
                  • S Subliner

                    @arminunruh I don´t have any $ in my custom code & css. Only css and the gtag google code. Another idea to check?

                    Thanks!

                    G Offline
                    G Offline
                    gauchedamned
                    wrote on last edited by
                    #9

                    @Subliner Did you update the addon and theme? They are continuously running updates. I had updated first and my lightbox has come back (mostly) with just the one issue now, where it is skipping to every other image when using arrow keys on keyboard to advance. It had come back without me first fixing the custom code. Armin must have seen errors in my custom code in dev view and offered a solution for that. That custom stuff had only controlled a menu fade out i have, but it seems independent of the addon working. Try updating and running it.

                    S 1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      Subliner
                      wrote on last edited by
                      #10

                      I repeat all and looks working now :)

                      1 Reply Last reply
                      0
                      • G gauchedamned

                        @Subliner Did you update the addon and theme? They are continuously running updates. I had updated first and my lightbox has come back (mostly) with just the one issue now, where it is skipping to every other image when using arrow keys on keyboard to advance. It had come back without me first fixing the custom code. Armin must have seen errors in my custom code in dev view and offered a solution for that. That custom stuff had only controlled a menu fade out i have, but it seems independent of the addon working. Try updating and running it.

                        S Offline
                        S Offline
                        Subliner
                        wrote on last edited by
                        #11

                        @gauchedamned said in Lightbox add-on not working after 3.0.0 update:

                        @Subliner Did you update the addon and theme? They are continuously running updates. I had updated first and my lightbox has come back (mostly) with just the one issue now, where it is skipping to every other image when using arrow keys on keyboard to advance. It had come back without me first fixing the custom code. Armin must have seen errors in my custom code in dev view and offered a solution for that. That custom stuff had only controlled a menu fade out i have, but it seems independent of the addon working. Try updating and running it.

                        I just check your issue in my site and it´s happening exactly the same with the arrows and keyboard :(

                        1 Reply Last reply
                        0
                        • arminunruhA Offline
                          arminunruhA Offline
                          arminunruh
                          Global Moderator
                          wrote on last edited by
                          #12

                          yea i'm fixing the arrow key issue now!

                          G S 2 Replies Last reply
                          0
                          • arminunruhA arminunruh

                            yea i'm fixing the arrow key issue now!

                            G Offline
                            G Offline
                            gauchedamned
                            wrote on last edited by
                            #13

                            @arminunruh Awesome, thanks!
                            I am also noticing another issue. This is in gridder when you are editing site.
                            I noticed that if i am trying to set "offset" or "spaces" parameters for an image and i control/select the image for the pop up menu.
                            If an image appears at the right hand edge of the gridder working page the pop up menu is displayed outside of the page where i cannot get to the controls.
                            This only happens when dealing with an image to the right hand edge of the window since this pop-up menu only appears to the right.
                            I can't remember if this was an issue happening with the old gridder, i just stumbled on it yesterday.
                            Thanks for your quick reply and action on these bugs btw! it's really helpful, and i'm grateful for the support.
                            W

                            1 Reply Last reply
                            0
                            • arminunruhA Offline
                              arminunruhA Offline
                              arminunruh
                              Global Moderator
                              wrote on last edited by
                              #14

                              oh yea i will fix this!

                              G 1 Reply Last reply
                              0
                              • arminunruhA arminunruh

                                yea i'm fixing the arrow key issue now!

                                S Offline
                                S Offline
                                Subliner
                                wrote on last edited by
                                #15

                                @arminunruh Thanks!

                                1 Reply Last reply
                                0
                                • F Offline
                                  F Offline
                                  FloMo
                                  wrote on last edited by
                                  #16

                                  Same here, but it's carousel

                                  1 Reply Last reply
                                  0
                                  • arminunruhA arminunruh

                                    oh yea i will fix this!

                                    G Offline
                                    G Offline
                                    gauchedamned
                                    wrote on last edited by
                                    #17

                                    @arminunruh Thanks! everything's looking good for me now. Appreciate it!

                                    1 Reply Last reply
                                    0
                                    • arminunruhA Offline
                                      arminunruhA Offline
                                      arminunruh
                                      Global Moderator
                                      wrote on last edited by
                                      #18

                                      @FloMo

                                      please create a new topic
                                      and before see if u updated both the carousel and lay theme

                                      1 Reply Last reply
                                      0
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      I also code custom websites or custom Lay features.
                                      💿 Email me here: 💿
                                      info@laytheme.com

                                      Before you post:
                                      1. When using a WordPress Cache plugin, disable it or clear your cache.
                                      2. Update Lay Theme and all Lay Theme Addons
                                      3. Disable all Plugins
                                      4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

                                      This often solves issues you might run into

                                      When you post:
                                      1. Post a link to where the problem is
                                      2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                                      3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                                      Online Users
                                      A
                                      alasdair17
                                      Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                                      laytheme.com
                                      • Login

                                      • Don't have an account? Register

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Recent
                                      • Tags
                                      • Popular
                                      • Users
                                      • Search