Artemis909 Posted October 22, 2014 Share Posted October 22, 2014 Hi, it is possible to get "id_country" value from current cart delivery address? This is working $cart->id_address_delivery -return id_address correct this does not return nothing $cart->id_address_delivery->id_country $cart->id_country Thank you for help Link to comment Share on other sites More sharing options...
tuk66 Posted October 23, 2014 Share Posted October 23, 2014 $address = new Address($cart->id_address_delivery); $id_country = $address->id_country; 1 Link to comment Share on other sites More sharing options...
Artemis909 Posted October 23, 2014 Author Share Posted October 23, 2014 (edited) Thanks for answer so classes/Cart.php should be modified I suppose. Edited November 12, 2014 by Artemis909 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts