Time for action—Adding a horizontal menu
The original discussion about this can be viewed at http://www.PrestaShop.com/forums/viewthread/17546
The block highlighted by red outline in the preceding screenshot is what we want to achieve in our next task.
Download the module from the link and save it to your hard disk.
Upload the
zip
file to your/prestashop/modules
directory in your server and extract the content.You will need to edit two files, as it is important for hook activation. The first file
header.php
, can be found in themodules
directory.Open your
header.php
file and edit the following:$smarty->assign(array( 'HOOK_HEADER' => Module::hookExec('header'), 'HOOK_LEFT_COLUMN' => Module::hookExec('leftColumn'), 'HOOK_TOP' => Module::hookExec('top'), 'static_token' => Tools::getToken(false), 'token' => Tools::getToken(), 'priceDisplayPrecision' => _PS_PRICE_DISPLAY_PRECISION_, 'content_only' => intval(Tools::getValue('content_only')) ));
Edit it to...