Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Last active April 29, 2020 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pramodjodhani/b431d0bda33050d16ee711fe8bcbde06 to your computer and use it in GitHub Desktop.
Save pramodjodhani/b431d0bda33050d16ee711fe8bcbde06 to your computer and use it in GitHub Desktop.
<?php
/**
* Disable WooThumbs to prevent duplicate gallery.
*
* @return void
*/
function iconic_disable_woothumbs() {
global $iconic_woothumbs_class;
remove_action( 'woocommerce_before_single_product_summary', array( $iconic_woothumbs_class, 'show_product_images' ), 20 );
}
add_action( 'wp', 'iconic_disable_woothumbs' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment