Disable Bestsellers block on page "post"
This commit is contained in:
parent
cc11413f1f
commit
84886b3c93
@ -100,7 +100,11 @@ class BlockBestSellers extends Module
|
||||
if (Configuration::get('PS_CATALOG_MODE'))
|
||||
return ;
|
||||
|
||||
global $cookie, $smarty, $cart;
|
||||
global $cookie, $smarty, $cart, $page_name;
|
||||
if ($page_name == 'post') {
|
||||
return;
|
||||
}
|
||||
|
||||
$step = Tools::getValue('step');
|
||||
if(!$step || ($step && $step != 3 && $step != 4)) {
|
||||
$id_lang = $cookie->id_lang;
|
||||
|
Loading…
Reference in New Issue
Block a user