Woocommerce remove image link single product

Posted in: Newspaper
Post count: 116

Hi, i’m trying to remove image link of a single product.
But this do not work:
.single-product .images a {pointer-events: none;}

Any ideas?
Thanks!

Post count: 23312

Hello 22p,

Also, your website is required for an accurate response.

Thanks for the message!

Post count: 116

Thanks Cat –> here: https://goo.gl/qO9JVn

Post count: 116

Hi Cat, i solve with this:

// WooCommerce Removing product image link

function custom_remove_single_product_image_html( $html, $post_id ) {
return get_the_post_thumbnail( $post_id, apply_filters( ‘single_product_large_thumbnail_size’, ‘shop_single’ ) );
}
add_filter(‘woocommerce_single_product_image_html’, ‘custom_remove_single_product_image_html’, 10, 2);

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.