Home Forums WoodMart support forum Split: Hover effect on product grid not correct for horizontal images.

Split: Hover effect on product grid not correct for horizontal images.

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #441784

    oasisart.nl
    Participant

    One more thing,

    It seems that there is no compatibility with Woocommerce Bundles in the product grid widgets. Can you also take a look at this? Thanks in advance

    You can replicate on this url: https://www.oasisart.nl/?s=thinking&post_type=product&type_aws=true

    thanks in advance

    Attachments:
    You must be logged in to view attached files.
    #441962

    Artem Temos
    Keymaster

    Hello,

    Could you please check how it works with some default WordPress themes like TwentyTwenty or WooCommerce Storefront to understand is it our theme issue or not? Send us a screenshot, please.

    Regards

    #442133

    oasisart.nl
    Participant

    Hi there, thanks for your reply

    I tried on my old theme which is still active on a staging site. The Astra theme is used here, with a third party product grid from The Plus addons. I placed a test product bundle as the first product on the shop page: https://www.staging17.oasisart.nl/shop/

    As you can see here the thumbnail gets displayed correctly.

    I also tried installing another product bundle on my live site: ‘WPClever product bundles for Woocommerce’: https://wordpress.org/plugins/woo-product-bundle/

    When using this plugins product type (‘smart bundle’ instead of the other plugins ‘product bundle’) the thumbnails ant atc button get displayed the same way in the product grids.)

    Attachments:
    You must be logged in to view attached files.
    #442137

    Artem Temos
    Keymaster

    Hello,

    As we can see, the crop function is enabled on this website. As we said, you can enable crop in WooCommerce settings with Woodmart as well.

    Kind Regards

    #442138

    oasisart.nl
    Participant

    Please, this is not the problem for both tickets. You can see that in both my websites these settings are already enabled

    Attachments:
    You must be logged in to view attached files.
    #442140

    Artem Temos
    Keymaster

    As we can see, it is currently disabled on the staging website. Please, send us your admin access so we can check.

    #442145

    oasisart.nl
    Participant

    I fixed the product bundle thumbnail issue now on the live site by uploading a new picture and cropping it to 1:1 before uploading.

    For the product bundle the ATC button still displays different than for regular products. Is this something that can be fixed? It seems that the ‘PRODUCT BEKIJJKEN’ text doesn’t apply to bundled product ATC buttons

    #442147

    Artem Temos
    Keymaster

    We need to test how it works with the default theme on this website to see if it happens with WoodMart only.

    #442272

    oasisart.nl
    Participant

    It was indeed not a woodmart issue, thanks for the help though.

    Nevertheless, the issue was the ‘select options’ text missing for product bundel product type. I fixed it with this snippet:

    add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' );
        function custom_woocommerce_product_add_to_cart_text() {
            global $product;
    
            $product_type = $product->product_type;
    
    		 switch ( $product_type ) {
                case 'bundle':
                    return __( 'Samenstellen', 'woocommerce' );
            }
    
        }
    • This reply was modified 1 year, 7 months ago by oasisart.nl.
    #442468

    Artem Temos
    Keymaster

    Great, we are glad that you sorted it out. Feel free to contact us if you have any further questions.

    Kind Regards

Viewing 10 posts - 1 through 10 (of 10 total)

The topic ‘Split: Hover effect on product grid not correct for horizontal images.’ is closed to new replies.