Hi Nishant,
I would to remove the social bar tool that I hightlight in the screenshot I use my own social tool.
By my own social sharing tool i mean another plugin like “Simple share buttons adder”.
I find a way to replace the default tool in product page, but i need you help to do it globally and especially for post and page.
Just for knowledge for product I it like this :
Put in comment in
wp-content\themes\joyn\swift-framework\core\sf-woocommerce.php
/* WOO PRODUCT SHARE
==================================================
if ( ! function_exists( ‘sf_product_share’ ) ) {
function sf_product_share() {
global $post;
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), false, ” );
?>
<div class=”article-share product-share” data-buttontext=”<?php _e( “Share this”, “swiftframework” ); ?>”
data-image=”<?php echo $image[0]; ?>”></div>
<?php
}
add_action( ‘woocommerce_single_product_summary’, ‘sf_product_share’, 45 );
}
*/
/* WOO PRODUCT META
================================================== */
Then put my shortcode after line 147 <?php echo do_shortcode(‘[ssba]’); ?> in
wp-content\themes\joyn\woocommerce\content-single-product.php
Attachments:
You must be
logged in to view attached files.