Changes in the WoCoommerce product page gallery

Hi!

I need to do some changes to the products page. I need to remove the magnifying glass image, and I need the miniatures to be below the main image.

This is my web address: http://maskrosbarnen.se/produkt/alladin-kaffebricka-liten/

It this possible, and how?

And yes, the site is horrible, but my client wanted to go on a very low budget. Thankfully, though, you guys on Themeco helps me give a working site super quick!!

Thank you

Hi There,

Please add the following code under functions.php file locates in your child theme:

add_action( 'after_setup_theme', 'remove_woo_features', 999 );
function remove_woo_features(){
	remove_theme_support( 'wc-product-gallery-zoom' );
	remove_theme_support( 'wc-product-gallery-lightbox' );
	remove_theme_support( 'wc-product-gallery-slider' );
}

Hope it helps :slight_smile:

1 Like

awesome!

Unfortunately I have not made a Child Theme yet. Would a transfer to a child theme be an easy project (adding the child theme and switching to it), or would I have to redo the entire site?

I know that Themeco have pre-made child themes in the apex, so the install wouldn’t be to hard. Just wondering if it will ‘crash’ the present site?

Hi there,

Installing the child theme should be straight forward as it will just be another theme but is dependent to the parent theme and you’ll be able to add the customizations without losing them when the parent theme updates.

You can find more info from here: https://theme.co/apex/child-themes

It should not crash your site when you install it but it would also be recommended to keep a full backup of your site before you make any major changes.

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.