Created
October 9, 2018 17:01
-
-
Save gorkamu/45c6fee0362ad30a79c53f3050f875ae to your computer and use it in GitHub Desktop.
Woocommerce variation override
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( 'woocommerce_single_variation', 'woocommerce_single_variation', 10 ); | |
if(!function_exists('woocommerce_single_variation')) { | |
function woocommerce_single_variation() { | |
echo '<div class="woocommerce-variation single_variation woo_single_variation"></div>'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment