Fixed issue #778
This commit is contained in:
parent
44aff5f761
commit
1e0da3c42a
|
|
@ -1000,7 +1000,7 @@ return [
|
|||
'url-key' => 'URL Key',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'create-btn-title' => 'Add Page',
|
||||
'create-btn-title' => 'Save Page',
|
||||
'edit-title' => 'Edit Page',
|
||||
'edit-btn-title' => 'Save Page',
|
||||
'create-success' => 'Page created successfully',
|
||||
|
|
|
|||
|
|
@ -313,6 +313,10 @@ class Cart {
|
|||
|
||||
$weight = ($product->type == 'configurable' ? $childProduct->weight : $product->weight);
|
||||
|
||||
if (gettype($weight)) {
|
||||
$weight = floatval($weight);
|
||||
}
|
||||
|
||||
$parentData = [
|
||||
'sku' => $product->sku,
|
||||
'quantity' => $data['quantity'],
|
||||
|
|
|
|||
|
|
@ -12,6 +12,6 @@ return [
|
|||
'remove-all-success' => 'All The Items From Your Wishlist Have Been Removed',
|
||||
],
|
||||
'reviews' => [
|
||||
'empty' => 'You Have Not Reviewed Any Of Product Yet'
|
||||
'empty' => 'You have not reviewed any of product yet'
|
||||
]
|
||||
];
|
||||
Loading…
Reference in New Issue