-
AuthorPosts
-
October 25, 2017 at 6:11 am #868543
What is the best plugin and approach for implementing product social share similar to what is on this link.
The current WOO commerce social share is too bulky and not a good fit
October 25, 2017 at 6:36 am #868548I also reviewed this link and it works but the result is not design friendly.
October 25, 2017 at 6:36 am #868549My example implementation is included herein
October 25, 2017 at 6:44 am #868553In this setup, how can I reduce the size of the enfold social share buttons
October 25, 2017 at 4:52 pm #868809Hi hingex,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
VictoriaOctober 25, 2017 at 7:07 pm #868893Certainly, I have included the link to my product page in WOO Commerce.
This example theme contains a smaller and design friendly implementation of sharing on the product detail page. it is in the top right versus bottom. However, my main need at the moment is to reduce the size and appearance of the built-in Enfold Social ShareOctober 25, 2017 at 7:35 pm #868909Using your feedback, I was able to reduce the width. How can I additionally move the description section up just a but. Up and closer to the social share buttons?
October 27, 2017 at 5:09 pm #869671Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top div.product .woocommerce-tabs { padding-top: 30px; }Best regards,
YigitOctober 28, 2017 at 5:37 pm #869979Thank you, this works. I have one last question. In the current state, what would it take to move the share buttons to the top right on the same horizontal plane as the product title? I have an example link.
October 30, 2017 at 4:18 pm #870550Hi,
Please add following code to Functions.php file in Appearance > Editor
function av_product_share() { ?> <div class="single-share-buttons"> <?php echo do_shortcode("YOUR SHORTCODE GOES WITHIN THESE DOUBLE QUOTES"); ?> </div> <?php } add_action( 'woocommerce_single_product_summary', 'av_product_share', 6 );and replace that text in the code with your shortcode
Best regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.
