Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2853272
Show image gallery on products variations
Closed

Comments

  •  6
    Samuel started the conversation

    Is it possible to show the image gallery or a slider of all the images of each bundled product or an image flipper effect so it shows the second image of each bundled product on hover? I'm working with product variations and quantities so they don't change the main product image when they get quantities added and I want the customer to be able to see all the available images of each variation  (please find screenshots attached).

  •  767
    Janilyn replied

    Hi Samuel,

    Thank you for contacting WPClever Support Forum. 

    We’ve received your ticket and assigned one of our developers to help you investigate that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1,226
    Dustin replied

    Hi Samuel,

    I understand your wish but it's too difficult to implement it right now.

    You can try this option instead https://www.screencast.com/t/E5zR4b2D1 and the buyer can see the bigger image or gallery images of each product on a quick view popup.

    Best regards,
    Dustin

  •  6
    Samuel replied

    Hello Justin,

    I tried that option but since they are products variations it doesn't show the gallery images (I am using another plugin to have variations gallery images and for some reason the gallery for each variation does't show up in the popup). 

    I submitted a ticket asking about this but I was told I need to buy the Premium version of the Quick View plugin to get a free customization service and I don't think it's the adequate solution here since all I need is a way to show the gallery images, not the whole product and I already paid for this plugin so I shouldn't have to buy another plugin to get a customization service for this one if you know what I mean.

    Looking forward to your comments.

    Best,

    Samuel


  •  1,226
    Dustin replied

    Sorry, our plugin WPC Product Bundles hasn't this feature and we can't custom it to works as your requirement.

    Best regards,
    Dustin

  •  6
    Samuel replied

    Hi Dustin, 

    Thank you for your quick response.

    Oh ok, from what you said before I understood it was difficult to implement it right now, not that you were not able to do it.

    So if I pay for the premium version of the other plugin, would you be able to do it?

    Regards,

    Samuel

  •  1,226
    Dustin replied

    Please don't think we're forcing you to buy the premium version for support.

    We can't do that with the current structure of WPC Product Bundles. So, the solution is using the quick view popup. 

    Please use the latest version 2.6.9 of WPC Smart Quick View here https://wordpress.org/plugins/woo-smart-quick-view/

    Then, add the below custom code (How to add custom code?) to make it work with Additional Variation Images Gallery for WooCommerce.

    add_filter( 'woosq_thumbnails', 'your_woosq_thumbnails', 99, 2 );
    function your_woosq_thumbnails( $thumbs, $product ) {
        if ( $product->is_type( 'variation' ) ) {
            $images = (array) get_post_meta( $product->get_id(), 'woo_variation_gallery_images', true );
            if ( $product->get_image_id() && ( get_option( 'woosq_content_image', 'all' ) === 'all' ) ) {
                array_unshift( $images, $product->get_image_id() );
            }
            if ( ! empty( $images ) ) {
                return $images;
            }
        }
        return $thumbs;
    }

    Best regards,
    Dustin