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 800 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.
  • F Offline
    F Offline
    felix_rabe
    wrote on Oct 30, 2022, 8:57 PM last edited by felix_rabe Oct 30, 2022, 5:00 PM
    #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
    • A Offline
      A Offline
      arminunruh
      Global Moderator
      wrote on Nov 2, 2022, 8:18 PM last edited by
      #8

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

      L 1 Reply Last reply Jan 5, 2023, 3:54 PM
      1
      • A arminunruh
        Nov 2, 2022, 8:18 PM

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

        L Offline
        L Offline
        Lina
        wrote on Jan 5, 2023, 3:54 PM last edited by
        #9

        @arminunruh cooool <3 <3

        1 Reply Last reply
        1
        • T Offline
          T Offline
          tasio
          wrote on Jan 30, 2023, 2:34 PM last edited by tasio Jan 30, 2023, 9:35 AM
          #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 Feb 2, 2023, 4:52 PM
          0
          • T tasio
            Jan 30, 2023, 2:34 PM

            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 Feb 2, 2023, 4:52 PM 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 Feb 9, 2023, 1:40 PM
            1
            • A alasdair17
              Feb 2, 2023, 4:52 PM

              @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 Feb 9, 2023, 1:40 PM last edited by
              #12

              @alasdair17 Oh thanks !

              1 Reply Last reply
              0
              • A Offline
                A Offline
                arminunruh
                Global Moderator
                wrote on Feb 10, 2023, 5:09 PM last edited by
                #13

                damn mmmh

                1 Reply Last reply
                0
                • K Offline
                  K Offline
                  kumi.studio
                  wrote on Sep 10, 2023, 10:14 AM 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 Sep 10, 2023, 11:24 AM
                  0
                  • K kumi.studio
                    Sep 10, 2023, 10:14 AM

                    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 Sep 10, 2023, 11:24 AM last edited by kumi.studio Sep 10, 2023, 7:25 AM
                    #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
                    • A Offline
                      A Offline
                      arminunruh
                      Global Moderator
                      wrote on Sep 11, 2023, 2:43 PM 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 Sep 11, 2023, 7:32 PM
                      0
                      • A Offline
                        A Offline
                        arminunruh
                        Global Moderator
                        wrote on Sep 11, 2023, 2:44 PM last edited by
                        #17

                        and your website looks really great btw!

                        1 Reply Last reply
                        0
                        • arminunruhA arminunruh
                          Sep 11, 2023, 2:43 PM

                          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 Sep 11, 2023, 7:32 PM last edited by kumi.studio Sep 11, 2023, 3:33 PM
                          #18

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

                          K 1 Reply Last reply Sep 11, 2023, 7:34 PM
                          0
                          • K kumi.studio
                            Sep 11, 2023, 7:32 PM

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

                            K Offline
                            K Offline
                            kumi.studio
                            wrote on Sep 11, 2023, 7:34 PM 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 Sep 13, 2023, 4:34 PM 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
                              K
                              kernlose
                              13 minutes ago
                              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