Welcome to our Support Portal › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Adjust the way Variety is showing in Cart and remove TOTAL form variety › Reply To: Adjust the way Variety is showing in Cart and remove TOTAL form variety
March 7, 2019 at 6:12 am
#10949
Keymaster
Hi,
inside inc/functions.php near line 248 you see this:
if( $total_qty > 0 ) {
$qty_values[] = __('Total',"ppom").' = '.$total_qty;
$meta_data = array('name'=>$field_title, 'value'=>implode(",",$qty_values));
// A placeholder key to handle qunantity display in item meta data under myaccount
}
Remove this line
$qty_values[] = __('Total',"ppom").' = '.$total_qty;