Solution for Shipper List bug(error) in VirtueMart(Joomla) Admin Panel

Guys from VirtueMart Development Team still didn’t fix next error:

Warning: Missing argument 2 for vmGet(), called in …/administrator/components/com_virtuemart/classes/ps_shipping.php on line 138 and defined in …/administrator/components/com_virtuemart/classes/request.class.php on line 26

Fix is next:
Go to: administrator/components/com_virtuemart/classes/ps_shipping.php
change the WRONG line 113:

($fields = array( 'shipping_carrier_name' => vmGet($d["shipping_carrier_name"]),)

with this line:

$fields = array( 'shipping_carrier_name' => vmGet($d, 'shipping_carrier_name'),


Leave a Reply