Jump to content

utekaravinash

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Location
    Mumbai, India
  • Activity
    Developer

Recent Profile Visitors

1,992,536 profile views

utekaravinash's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Were you able to find a solution to your problem?
  2. You may need to clear your browser's cache if the modified CSS is not taking effect... You may also want to disable Smarty cache and enable force compile option for template cache as follows... Advanced Parameters > Performance > Smarty section > Template Cache > select Force Compile option Advanced Parameters > Performance > Smarty section > Cache > select 'No' There should not be any issues with positions configuration... You may want to refer to prestashop user guide for configuring module positions... http://doc.prestashop.com/display/PS15/Managing+Modules+and+Themes#ManagingModulesandThemes-Attachingamoduletoahook%3ATransplanting
  3. This code is not there is global.css... In fact, you have to add it to be able to hide some columns according to the current page.... e.g. The below code will hide both left and right columns on the index page, body#index #center_column {width:951px} body#index #right_column #left_column {display:none} and this code will hide the right column on the category page, body#category #center_column {width:951px} body#category #right_column {display:none} and this code will hide the left column on the product page, body#product #center_column {width:951px} body#product #left_column {display:none} If you want to hide a module on some pages then you can do so by mentioning those page names in Exceptions list... Modules > Positions > Edit > Exceptions
  4. Thanks for the quick reply, jhnstcks. Your CSS code is working perfectly fine to hide the left and right columns on the required pages. But what I have to do to disable these columns altogether, so that they won't execute the modules attached to these two hooks (left and right column hooks) unnecessarily on these pages?
  5. Dear All, I am new to prestashop and am trying to customize the default theme of version 1.4.7.3. I want to have the below layout for my home, category and product pages. 1. Home Page: Both the left and right columns will be disabled. The center column will occupy all the space between Header and Footer section. 2. Category Page: Right column will be disabled. Left column will be as it is. Center column will occupy the space for center and right columns. 3. Product Page: Left column will be disabled. Right column will be as it is. Center column will occupy the space for center and left columns. Please let me know what all changes are required to achieve this layout. Regards, Avinash PS: Please find the attached layouts for your reference.
×
×
  • Create New...