You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello I am trying to update cart with the quantity in decimal points but it does not update it even not giving any response. Although it is working fine while adding item to cart.
Hello I am trying to update cart with the quantity in decimal points but it does not update it even not giving any response. Although it is working fine while adding item to cart.
Cart::add(array(
'id' => 456, // inique row ID
'name' => 'Sample Item',
'price' => 67.99,
'quantity' => 2.75,
'attributes' = array()
));
This above code is working fine for adding to cart but the below code for updating cart is not working.
Cart::update(456, array(
'quantity' => array(
'relative' => false,
'value' => 5.5
),
));
The text was updated successfully, but these errors were encountered: