1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php /** * Single Product Share * * Sharing plugins can hook into here or you can add your own code directly. * * @author WooThemes * @package WooCommerce/Templates * @version 1.6.4 */
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly global $post; ?>
<?php echo do_shortcode('[share]'); // edit this in themefolder/inc/shortcodes/share.php ?>
<?php do_action('woocommerce_share'); // Sharing plugins can hook into here ?>
|