• Resolved Pyxis2025

    (@drp2p2)


    When I activate the Woocommerce Google pay button, or PayPal, the Wish List Icon drops in front of the pay buttons. How do I fix?

    PPIssue

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi there

    I think that your theme does a little stretch trying to position Add to Wishlist button next to Add to Cart, without changing the action where it’s hooked

    This means that, even if ATW is actually <b>after</b> the Add to Cart form (including GPay button), your theme tries to position it <b>inside</b> that form

    Unfortunately there is no way to fix this without removing the button and hooking it again via custom PHP code
    An easy workaround would be to apply the following CSS to Additional CSS section of theme Customizer (WP Dashboard -> Appearance -> Customize)

    .woocommerce div.product.type-product .cart {
        float: none;
    }
    
    div.product .summary .yith-wcwl-add-to-wishlist {
        margin-top: -112px;
    }
    

    Anyway, I don’t recommend this option, and I suggest contacting theme devs and ask them to remove ATW from current location and hook it to a more suitable position, inside the Add to Cart form

    Thread Starter Pyxis2025

    (@drp2p2)

    Thanks. I had to change the format of the product pages. I Think it is working now: https://preppyprincess.com/shop/manhattan_patent_leather_collar/

    Plugin Author YITHEMES

    (@yithemes)

    Nice to hear good news!
    I’m marking this topic as solved

    If you enjoy our plugin, don’t forget to leave us a 5 star review, to support us and help our work
    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Wish List Icon in wrong spot’ is closed to new replies.