• WooCommerce and the Basel theme, by default, use an ADD TO CART button. However, the Woo Invoices plugin mysteriously changes our ADD TO CART button to a SELECT OPTIONS button.

    Needless to say, this will cause confusion for customers, because they’ll think they are selecting a size, when in fact they are adding the item to their cart.

    We’re currently using Woo Invoices + Sliced Invoices + Sliced Invoices Stripe. Furthermore, we were under the impression that we needed to activate Woo Invoices + Sliced Invoices at the same time, in order for either plugin to work.

    Does anyone know if we can deactivate Woo Invoices (in order to get rid of the SELECT OPTIONS button on our Product page) and ONLY activate Sliced Invoices + Sliced Invoices Stripe?

    Does anyone know if those two plugins be able to function on their own, without Woo Invoices?

    Any insight would be greatly appreciated!

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

Viewing 1 replies (of 1 total)
  • Plugin Author SlicedInvoices

    (@slicedinvoices)

    Woo Invoices does reset the button labels to their WooCommerce defaults. Most of the time this works fine, but if it’s not working for you, you can disable it by adding the following code to your theme’s (or child theme’s) functions.php file:

    remove_filter( 'woocommerce_product_add_to_cart_text', 'sliced_woocommerce_custom_button_text' ); 
    remove_filter( 'woocommerce_product_single_add_to_cart_text', 'sliced_woocommerce_custom_button_text' );

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Woo Invoices mysteriously creating a SELECT OPTIONS button on Product page’ is closed to new replies.