Fixed issue #778

This commit is contained in:
Prashant Singh 2019-08-29 16:11:12 +05:30
parent 44aff5f761
commit 1e0da3c42a
3 changed files with 6 additions and 2 deletions

View File

@ -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',

View File

@ -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'],

View File

@ -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'
]
];