davidmr92 Posted February 20, 2015 Share Posted February 20, 2015 Hello, I wanna know how to remove the hook left, in only one category. I think I wanna to do it with a variable of the category name o category id, but I dont know how. Thanks Link to comment Share on other sites More sharing options...
fred-vinapresta Posted February 20, 2015 Share Posted February 20, 2015 Hi, you need to override the classes/controller/FrontController file. if the init function, you need to add something like that: $show_left_column = 1; if (Tools::getIsset('id_product') && $current_category = Tools::getValue('id_product')) if ($current_category == your_category_id) $show_left_column = 0; $this->context->smarty->assign('show_left_column', $show_left_column); then in your header.tpl file you can add: {if $show_left_column} {$HOOK_LEFT_COLUMN} {/if} Link to comment Share on other sites More sharing options...
davidmr92 Posted February 23, 2015 Author Share Posted February 23, 2015 Sorry, not works, or I'm doing something wrong Link to comment Share on other sites More sharing options...
fred-vinapresta Posted February 23, 2015 Share Posted February 23, 2015 Hi, try to delete the cache/class_index.php file, it will regenerate itlself and desactivate the smarty cache Link to comment Share on other sites More sharing options...
davidmr92 Posted February 23, 2015 Author Share Posted February 23, 2015 Hello, still not working, there is a capture as seen: And here is the documents edited: Thanks Link to comment Share on other sites More sharing options...
ventura Posted February 24, 2015 Share Posted February 24, 2015 (edited) Try it with css .category-5 #left_column { display: none; } 5 = id category Edited February 24, 2015 by ventura (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now