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. Shop / WooCommerce
  3. Mouse Over / Image Flipper for Product Thumbnails?

Mouse Over / Image Flipper for Product Thumbnails?

Scheduled Pinned Locked Moved Shop / WooCommerce
20 Posts 7 Posters 902 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.
  • RichardR Offline
    RichardR Offline
    Richard
    Global Moderator
    wrote on last edited by
    #4

    Dear @Lina

    Cool shop ā­ļø I see that the effect is switched off currently?

    • Is there any time it would be active to get a better look? šŸ”

    If the images are stacking but mouseover function working there may be some simple CSS for image placement.

    install TP Product Image Flipper for Woocommerce

    Woocommerce, Lay Theme updated

    Images stacking, but mouseover function working:

    Screen Shot 2022-04-03 at 2.49.58 PM.png

    Screen Shot 2022-04-03 at 2.50.04 PM.png

    Lay Theme's CSS is applying position:absolute to the images, with it removed i get a the correct layout:

    Screen Shot 2022-04-03 at 2.58.16 PM.png

    https://www.w3schools.com/cssref/pr_class_position.asp

    You may wish to seek the aid of a developer to help you with this problem, but hope this sets them in the right direction āœ…


    Best wishes
    Richard
    1 Reply Last reply
    0
    • L Offline
      L Offline
      Lina
      wrote on last edited by
      #5

      Hi Richard! Cool, many thanks already! I will try that out (with help haha) and get back to you :-).

      1 Reply Last reply
      0
      • RichardR Offline
        RichardR Offline
        Richard
        Global Moderator
        wrote on last edited by
        #6

        Thanks @Lina ! best of luck ā­ļø

        1 Reply Last reply
        0
        • F Offline
          F Offline
          felix_rabe
          wrote on last edited by felix_rabe
          #7

          This might resolve it with the tp image product flipper plugin, assuming all product images will have the same dimensions, without fiddling with the lay theme css.

           .tp-image-wrapper{
               aspect-ratio: 2/3;
           }
          
          1 Reply Last reply
          0
          • arminunruhA Offline
            arminunruhA Offline
            arminunruh
            Global Moderator
            wrote on last edited by
            #8

            the replace image on mouseover feature for product thumbnails is on my todo list

            L 1 Reply Last reply
            1
            • arminunruhA arminunruh

              the replace image on mouseover feature for product thumbnails is on my todo list

              L Offline
              L Offline
              Lina
              wrote on last edited by
              #9

              @arminunruh cooool <3 <3

              1 Reply Last reply
              1
              • T Offline
                T Offline
                tasio
                wrote on last edited by tasio
                #10

                The same problem, I have installed the Image Flip For WooCommerce but it does not work well, I have tried with other plugins and none works correctly :(

                How I can solve it?

                Very grateful for all your work

                :(
                Captura de pantalla 2023-01-30 a las 15.34.35.png

                A 1 Reply Last reply
                0
                • T tasio

                  The same problem, I have installed the Image Flip For WooCommerce but it does not work well, I have tried with other plugins and none works correctly :(

                  How I can solve it?

                  Very grateful for all your work

                  :(
                  Captura de pantalla 2023-01-30 a las 15.34.35.png

                  A Offline
                  A Offline
                  alasdair17
                  wrote on last edited by
                  #11

                  @tasio hey, sometimes external plugins don't work too well with laytheme but I think Armin said he will be working on an image flipper for laytheme woocommerce in the future.

                  T 1 Reply Last reply
                  1
                  • A alasdair17

                    @tasio hey, sometimes external plugins don't work too well with laytheme but I think Armin said he will be working on an image flipper for laytheme woocommerce in the future.

                    T Offline
                    T Offline
                    tasio
                    wrote on last edited by
                    #12

                    @alasdair17 Oh thanks !

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

                      damn mmmh

                      1 Reply Last reply
                      0
                      • K Offline
                        K Offline
                        kumi.studio
                        wrote on last edited by
                        #14

                        I'm also trying to do the same, and I feel like I've gotten pretty close, I just can't figure out the last bit: I've managed to get the next image in the gallery to show up and be positioned and sized appropriately, the only remaining issue is that it is showing up underneath the original thumbnail rather than replacing it:

                        Screenshot.jpg

                        I've modified the following thread to make it work a little better with lay theme as on its own causes similar problems as those shown above:

                        ORIGINAL THREAD

                        https://stackoverflow.com/questions/62088615/switch-product-image-on-hover-on-woocommerce-archive-page

                        MODIFIED PHP SNIPPET

                        add_action( 'woocommerce_before_shop_loop_item_title', 'add_on_hover_shop_loop_image' ) ;

                        function add_on_hover_shop_loop_image() {

                        $image_id = wc_get_product()->get_gallery_image_ids()[1] ;
                        $img_size = wc_get_image_size( $image_id, 'full' );

                        if ( $image_id ) {

                            echo '<div class="product-thumb-hover">';
                        	echo wp_get_attachment_image( $image_id, 'full' ) ;
                        	echo '</div>';
                        

                        } else { //assuming not all products have galleries set

                        echo wp_get_attachment_image( wc_get_product()->get_image_id() ) ; 
                        

                        }

                        }

                        MODIFIED CSS

                        .product-thumb-hover img {
                        display: none;
                        }

                        .lay-product:hover .product-thumb-hover img {
                        display: block;
                        }

                        .woocommerce-LoopProduct-link img {
                        position: relative;
                        }

                        If you would like to view this live you can visit: https://structuremk.com/store/

                        I hope this helps either to figure out this issue I'm facing or to come up with a better solution

                        K 1 Reply Last reply
                        0
                        • K kumi.studio

                          I'm also trying to do the same, and I feel like I've gotten pretty close, I just can't figure out the last bit: I've managed to get the next image in the gallery to show up and be positioned and sized appropriately, the only remaining issue is that it is showing up underneath the original thumbnail rather than replacing it:

                          Screenshot.jpg

                          I've modified the following thread to make it work a little better with lay theme as on its own causes similar problems as those shown above:

                          ORIGINAL THREAD

                          https://stackoverflow.com/questions/62088615/switch-product-image-on-hover-on-woocommerce-archive-page

                          MODIFIED PHP SNIPPET

                          add_action( 'woocommerce_before_shop_loop_item_title', 'add_on_hover_shop_loop_image' ) ;

                          function add_on_hover_shop_loop_image() {

                          $image_id = wc_get_product()->get_gallery_image_ids()[1] ;
                          $img_size = wc_get_image_size( $image_id, 'full' );

                          if ( $image_id ) {

                              echo '<div class="product-thumb-hover">';
                          	echo wp_get_attachment_image( $image_id, 'full' ) ;
                          	echo '</div>';
                          

                          } else { //assuming not all products have galleries set

                          echo wp_get_attachment_image( wc_get_product()->get_image_id() ) ; 
                          

                          }

                          }

                          MODIFIED CSS

                          .product-thumb-hover img {
                          display: none;
                          }

                          .lay-product:hover .product-thumb-hover img {
                          display: block;
                          }

                          .woocommerce-LoopProduct-link img {
                          position: relative;
                          }

                          If you would like to view this live you can visit: https://structuremk.com/store/

                          I hope this helps either to figure out this issue I'm facing or to come up with a better solution

                          K Offline
                          K Offline
                          kumi.studio
                          wrote on last edited by kumi.studio
                          #15

                          **Edit

                          I've changed the CSS to the following and it works, it doesn't feel like the most elegant solution so please let me know what you think, but it seems to do the job for now:

                          .product-thumb-hover img {
                          display: none;
                          margin-top: -150%;
                          }

                          .lay-product:hover .product-thumb-hover img {
                          display: block;
                          }

                          .lay-product:hover .ph.lay-woocommerce-image img {
                          display: none;
                          }

                          .woocommerce-LoopProduct-link img {
                          position: relative;
                          }

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

                            i think you did a great job, it looks like it works well!

                            i will release an update today that will include this as a feature

                            Screenshot 2023-09-11 at 16.43.37.png

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

                              and your website looks really great btw!

                              1 Reply Last reply
                              0
                              • arminunruhA arminunruh

                                i think you did a great job, it looks like it works well!

                                i will release an update today that will include this as a feature

                                Screenshot 2023-09-11 at 16.43.37.png

                                K Offline
                                K Offline
                                kumi.studio
                                wrote on last edited by kumi.studio
                                #18

                                @arminunruh oh really? brilliant! thanks Armin, loving using the theme

                                K 1 Reply Last reply
                                0
                                • K kumi.studio

                                  @arminunruh oh really? brilliant! thanks Armin, loving using the theme

                                  K Offline
                                  K Offline
                                  kumi.studio
                                  wrote on last edited by
                                  #19

                                  @kumi-studio 1 last question, not sure if this is entirely related, but I couldn't find another post about it on the forum, currently there is no way to use video for either the thumbnails or in the product pages themselves right? would be super to be able to do so

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

                                    oh yea its a great idea. shopify has this feature too. i will write it down!
                                    at the moment i dont know if there is a way to do this mmh

                                    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
                                    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