Created
July 6, 2021 18:42
-
-
Save jorpdesigns/b0a7dbc8349eae65c1887f003059cdd5 to your computer and use it in GitHub Desktop.
Snippet to remove PrettyPhoto lightbox on WooCommerce product page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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