Could you post your site URL here, so I can have a look?
If you want it to remain private, you can also contact us via this contact form:
http://jetpack.com/contact-support/
Coming back to this, I wonder if you might be referring to sharing buttons appearing on product pages created with the Woocommerce plugin?
If so, I think I know what’s going on. In Jetpack 4.0, we indeed added a little compatibility feature to sites running Woocommerce and Jetpack. We moved sharing buttons from the bottom of the product pages to the top:
https://github.com/Automattic/jetpack/pull/3612/
Unfortunately, it looks like another plugin, or your theme, was already doing that on your site. To remove the extra set of buttons, you can paste the following in your theme’s functions.php file, or in a functionality plugin:
function jeherve_remove_jp_woo_buttons() {
remove_action( 'woocommerce_share', 'jetpack_woocommerce_social_share_icons', 10 );
}
add_action( 'loop_start', 'jeherve_remove_jp_woo_buttons' );
That will remove one set of buttons.
Hi,
I’m new to WordPress and I’ve added the following snippet to functions.php to remove the duplicated icons
function jeherve_remove_jp_woo_buttons() {
remove_action( ‘woocommerce_share’, ‘jetpack_woocommerce_social_share_icons’, 10 );
}
add_action( ‘loop_start’, ‘jeherve_remove_jp_woo_buttons’ );
and the following to custom-single-product.php to view the sharing icons underneath the product description
if ( function_exists( ‘sharing_display’ ) ) {
sharing_display( ”, true );
}
if ( class_exists( ‘Jetpack_Likes’ ) ) {
$custom_likes = new Jetpack_Likes;
echo $custom_likes->post_likes( ” );
}
you can take a look
is there any way to remove the sharing icons under the product tabs ?
thanks 🙂
-
This reply was modified 9 years, 8 months ago by
rasheedsamawi. Reason: forgot the main question :)