default.php
20 lines
| 1 | <div class="shopengine-product-share"> |
| 2 | <?php |
| 3 | |
| 4 | if(function_exists('__wp_social_share_pro_check')) { |
| 5 | |
| 6 | if(__wp_social_share_pro_check()) { |
| 7 | |
| 8 | $provider = 'all'; |
| 9 | $attr = []; |
| 10 | |
| 11 | echo __wp_social_share(apply_filters('shopengine_share_providers', $provider), apply_filters('shopengine_share_attr', $attr)); |
| 12 | } |
| 13 | |
| 14 | } else { |
| 15 | |
| 16 | woocommerce_template_single_sharing(); |
| 17 | } ?> |
| 18 | |
| 19 | </div> |
| 20 |