I have a large problem with PrestaShop, I'm using an API created by myself to provide service to a mobile Application.
Now, I can add, delete, update quantity to first shop cart. I can too navigate to categories and subcategories like my online shop.
But I have two shops and I would like to add a specific product on multishop mode to the second shop, and the script always add to the first shop cart.
This is my line to add in cart.
first shop id = 1
second shop = 4
$_shop = new Shop(_PS_SHOP_SELECTED_ID); //_PS_SHOP_SELECTED_ID = 4
$isAdded = $cart->updateQty((int)$product->quantity, (int)$producToAdd->id, $id_product_attribute, FALSE, 'up', 0,$_shop);
I finally found the best and proper way to change shop in context. I make many searchs from code and i found the first shop assignment is in config.inc.php but steel get the value from Shop class.
So to change the shop in context override:
Shop::initialize();
in Prestashop Shop class
to set your desire shop !
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With