Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #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

    #868548

    I also reviewed this link and it works but the result is not design friendly.

    #868549

    My example implementation is included herein

    #868553

    In this setup, how can I reduce the size of the enfold social share buttons

    #868809

    Hi hingex,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #868893

    Certainly, 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 Share

    #868909

    Using 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?

    #869671

    Hi,

    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,
    Yigit

    #869979

    Thank 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.

    #870550

    Hi,

    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

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.