Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1343547

    1. Before migrating to Enfold, the buttons were styled fine, but now they are above the addon option – is there a quick CSS way to align these left, in line with the text?

    You can see the issue I am having here under “Model-Options”: https://wenningbranding.com/product/advance-premium-retractable-banner-stand/

    2. Also, when adding these addon options, it doesn’t affect the total. When going to check out, the customer isn’t charged correctly for the addons. This was working before installing enfold, so I am confused about what the issue is with Enfold and Woocommerce.

    Thanks!

    #1343548

    Spoke with Woocommerce and the Addon issue is a Theme issue. Can you guys help out with that as well?

    2. When adding these addon options, it doesn’t affect the total. When going to check out, the customer isn’t charged correctly for the addons. This was working before installing enfold, so I am confused about what the issue is with Enfold and Woocommerce.

    #1343752

    Hi ewenning,

    Can you try adding this CSS code in Quick CSS:

    #top .form-row label {
        display: inline-block !important;
    }
    
    .wc-pao-addon .wc-pao-addon-wrap .wc-pao-addon-checkbox {
        width: auto;
    }

    Best regards,
    Nikko

    #1344171

    Worked! Thank you.

    Any thoughts on the WooCommerce Addons not applying to “Final Total” but applying in the cart? Here is a screenshot – https://snipboard.io/8g2zml.jpg. WooCommerce said to reach out to you guys about this issue. Not sure how to fix it or even where to start… Here’s a link to a product so you can see what is going on – https://wenningbranding.com/product/brandstand-1/

    Login info in private section.

    #1344285

    Hi,
    Thank you for the links, as you know both the Final Total and the Extra Options / Product Add-Ons Subtotal are from plugins, neither are standard, the Subtotal is updated by javascript on click / selection from the Extra Options, but this plugin doesn’t update the Final Total because they are not related, that is Extra Options is not looking to update the Final Total. In the Extra Options documentation it doesn’t show the Final Total only a larger Subtotal above the “add to cart” button.
    It seems redundant to show the price twice so I recommend using the following css to hide the Final Total and adjust the Subtotal into it’s place:
    2022-03-13_104211.jpg

    #top.single-product .single_variation_wrap #tc-final-price-total {
    	display: none;
    }
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line {
        justify-content: start;
    }
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line .price,
    #top.single-product div.product-addon-totals .wc-pao-subtotal-line .price .amount {
    	font-size: 1.5em;
        font-weight: bold;
        color:#383838;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1344348

    Perfect thank you so much!

    #1344357

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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