Here's how to fix the error Virtue mart:
Warning: Missing argument 2 for vmGet () Called in / htdocs / public / www / administrator / components / com_virtuemart / classes / ps_shipping.php on line 113 and defined in / htdocs / public / www / administrator / components / com_virtuemart / classes / request.class.php on line 26
ps_shipping.php download the file go to the line following lines:
113 and change the following code
$ fields = array ('shipping_carrier_name' => vmGet ($ d ["shipping_carrier_name"])
in
$ fields = array ('shipping_carrier_name' => vmGet ($ d, 'shipping_carrier_name'),
So the line of code for the original 26 code:
$ fields = array ('shipping_carrier_name' => vmGet ($ d ["shipping_carrier_name"])
modified code:
$ fields = array ('shipping_carrier_name' => vmGet ($ d, 'shipping_carrier_name'),
0 comments:
Post a Comment