Jump to content

Cart.php code issue


Recommended Posts

In Cart.php there is a function named "getDeliveryOptionList" that returns $delivery_option_list. 

 

What I want to achieve is to be able to remove at least one carrier in the carrier list:

 

$delivery_option_list[$id_address][$key] = array(
'carrier_list' => null,  //<--------------- changed this to null
'is_best_price' => true,
'is_best_grade' => false,
'unique_carrier' => (count(0) <= 1)
);
 
and it seems to be removed, however in the shipping summary the row is still visiblepost-909072-0-50806300-1422392411_thumb.png
 
I'm not very well versed in PHP so any help is appreciated.
Link to comment
Share on other sites

×
×
  • Create New...