Thread Starter
Diiamo
(@luislu)
Sorry to border, but no reply?
Hi, have you read the following instructions?
https://wordpress.org/plugins/scriptless-social-sharing/#what%20about%20a%20shortcode%3F
They should help you.
Also, don’t check any of the boxes in Content Types when using a shortcode. This option is located in the plugins settings.
Kind regards.
-
This reply was modified 2 years, 9 months ago by
mbrsolution.
Thread Starter
Diiamo
(@luislu)
Hi,
Thanks for your reply. I am using the Astra theme to build the product page, there is no option to add a shortcode to the page.
I read all the instructions, as well as support, and find a similar thread:https://wordpress.org/support/topic/how-to-move-the-location-of-social-sharing-icons-on-mobile/. But it doesn’t work on my website.
Can you please help modify the below code so I can use it directly, and move to the position I want. Many thanks
add_filter( 'scriptlesssocialsharing_locations', 'prefix_change_sss_locations' );
function prefix_change_sss_locations( $locations ) {
$locations['before'] = array(
'hook' => 'genesis_before_entry',
'filter' => false,
'priority' => 8,
);
$locations['after'] = array(
'hook' => 'loop_end',
'filter' => false,
'priority' => 8,
);
return $locations;
}
Hi, the sample code above is using the ‘genesis_before_entry’ hook. This hook is for Genesis themes. If you are using the following theme https://wordpress.org/themes/astra/, then you need to find the corresponding hook. Your best option is to speak to the Astra theme developers. They should be able to help you.
Kind regards.
You would want to find the correct WooCommerce hook to replace loop_end
in the sample code. I would look for one that’s listed maybe in content-single-product.php, possibly woocommerce_after_single_product
. You would need to manage the location in the filter conditionally, similar to the mobile thread, based on whether it’s a single product page.