I just updated to Jetpack 4.0.2 and I am getting the same thing on my WooCommerce product pages.
I went back to 3.9.6 and the double row is gone.
I’m experiencing the same double icons on product page since updating to 4.0.2.
I am going to assume that this is a JetPack issue and we have to wait for the JetPack people to correct it.
Is this happening outside of WooCommerce product pages, or just limited to WooCommerce?
Update, I just activated the Sharing module on another site and it’s fine, a single row. I think it’s something specific to WooCommerce.
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.
Aww, no good deed goes unpunished.
I spent a late night fixing some issues with the site in question and I figured out the code to move the sharing button from the bottom of the page, where they were covered up by a sizing chart, to the bottom of the description section. I was so proud of myself.
Removing my fix worked at fixing this.
Thanks for posting this, Jeremy.
Thread Starter
Anonymous User 13732656
(@anonymized-13732656)
Works perfect thank you for the fix!