Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function abc_woocommerce_gallery_support() {
- // Include the file for is_plugin_active() function
- include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
- // Check if WooCommerce is active
- if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
- // Check and add theme support for each feature
- if ( ! current_theme_supports( 'wc-product-gallery-zoom' ) ) {
- add_theme_support( 'wc-product-gallery-zoom' );
- }
- if ( ! current_theme_supports( 'wc-product-gallery-slider' ) ) {
- add_theme_support( 'wc-product-gallery-slider' );
- }
- if ( ! current_theme_supports( 'wc-product-gallery-lightbox' ) ) {
- add_theme_support( 'wc-product-gallery-lightbox' );
- }
- }
- }
- add_action( 'after_setup_theme', 'abc_woocommerce_gallery_support' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement