fix prod
This commit is contained in:
parent
699a06db48
commit
c48e673922
@ -237,7 +237,7 @@ class BlockBestSellers extends Module
|
||||
|
||||
if(!$this->isCached('blockbestsellers_productfooter_'.(int) $cookie->id_lang.'.tpl', $cache_id)) {
|
||||
$currency = new Currency((int)($params['cookie']->id_currency));
|
||||
$bestsellers = ProductSale::getBestSalesVp((int)($params['cookie']->id_lang), 0, 5);
|
||||
$bestsellers = ProductSale::getBestSalesVp((int)($params['cookie']->id_lang), 0, 6, NULL, NULL, 10);
|
||||
if (!$bestsellers AND !Configuration::get('PS_BLOCK_BESTSELLERS_DISPLAY'))
|
||||
return;
|
||||
$best_sellers = array();
|
||||
|
@ -163,7 +163,8 @@ class SoFlexibiliteDelivery
|
||||
$this->country : Country::getIsoById($customer_address->id_country);
|
||||
$this->id_customer = $this->id_customer ? $this->id_customer : $customer_address->id_customer;
|
||||
|
||||
$address->id_country = (int)Country::getByIso($this->country);
|
||||
//$address->id_country = (int)Country::getByIso($this->country);
|
||||
$address->id_country = strtolower($this->country) == 'fr'? 8: (int)Country::getByIso($this->country);
|
||||
$address->id_customer = (int)$this->id_customer;
|
||||
$address->firstname = $customer_address->firstname;
|
||||
$address->lastname = $customer_address->lastname;
|
||||
|
@ -6477,6 +6477,7 @@ table#carrierTable tbody td {
|
||||
z-index: 1000;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/***** New popup error - ticket 10233 prevent multi ******/
|
||||
#box_error_cart{
|
||||
|
Loading…
Reference in New Issue
Block a user