WC Product Addons removed price & duration from DB - bring it back

Issue #1072 resolved
Valentina R created an issue

NOW: The cart and checkout page show the added price and duration for a selected addon. But the order doesn’t. I checked the DB and it’s not saved in the DB.

Previous version of WC Product Addons had this option - it showed the extra price/duration in the order.

Reported here.

Comments (1)

  1. Valentina R reporter

    No need because it can be activated by using this filter:

    // Show extra price of addons in the order view
    add_filter('woocommerce_addons_add_order_price_to_value', function(){
      return true;
    });
    
  2. Log in to comment