Skip to content

Instantly share code, notes, and snippets.

@jorpdesigns
Created July 6, 2021 18:42
Show Gist options
  • Save jorpdesigns/b0a7dbc8349eae65c1887f003059cdd5 to your computer and use it in GitHub Desktop.
Save jorpdesigns/b0a7dbc8349eae65c1887f003059cdd5 to your computer and use it in GitHub Desktop.
Snippet to remove PrettyPhoto lightbox on WooCommerce product page
<?php
add_action( 'wp_enqueue_scripts', 'remove_woo_lightbox', 99 );
function remove_woo_lightbox() {
if ( is_product() ) {
wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
wp_dequeue_script( 'prettyPhoto' );
wp_dequeue_script( 'prettyPhoto-init' );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment