diff --git a/modules/blockbestsellers/blockbestsellers.php b/modules/blockbestsellers/blockbestsellers.php index 71b4e1c0..7348a9fb 100755 --- a/modules/blockbestsellers/blockbestsellers.php +++ b/modules/blockbestsellers/blockbestsellers.php @@ -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(); diff --git a/modules/soflexibilite/classes/SoFlexibiliteDelivery.php b/modules/soflexibilite/classes/SoFlexibiliteDelivery.php index 5db3e259..b8458e9a 100644 --- a/modules/soflexibilite/classes/SoFlexibiliteDelivery.php +++ b/modules/soflexibilite/classes/SoFlexibiliteDelivery.php @@ -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; diff --git a/themes/site/css/style.css b/themes/site/css/style.css index a6da1d2a..3a73fe3b 100755 --- a/themes/site/css/style.css +++ b/themes/site/css/style.css @@ -2742,7 +2742,7 @@ div.addresses ul.address li.address_title { color: #9a9a9a; } #product_list li span.reduction, .product_list li span.reduction { - background: url("../img/bg_reduction.png") no-repeat ; + background: url("../img/reduction.png") no-repeat center center; color: #fff; font-size: 15px; font-style: italic;