thestratocaster Posted July 9, 2013 Share Posted July 9, 2013 Hello, My apolgies, I am quite new to Presta Shop and have watched quite a few tutorials on how to alter my website, but cant figure out the following: I need to replace the newsletter module with a block contact info. I have tried hooking the block contact info to the left column, but I get the following error (see attached screenshot). I am basically trying to remove the newsletter module completely, but keep the site main column from sliding all the way to the right when I remove it. Hence putting something else in its place. Any help would be greatly appreciated! Kind Regards Kim Link to comment Share on other sites More sharing options...
vekia Posted July 9, 2013 Share Posted July 9, 2013 in this case its necessary to modify the module source code. open the: blockcontactinfos.php and change the: public function hookFooter($params) to the public function hookleftColumn($params) Link to comment Share on other sites More sharing options...
thestratocaster Posted July 9, 2013 Author Share Posted July 9, 2013 Thanks - I did as you said but got the following error in the backend: The following module(s) could not be loaded:: blockcontactinfos (parse error in /modules/blockcontactinfos/blockcontactinfos.php) blockcontactinfos (class missing in /modules/blockcontactinfos/blockcontactinfos.php) Link to comment Share on other sites More sharing options...
vekia Posted July 9, 2013 Share Posted July 9, 2013 please paste the .php file contents (attach it as file here) error code mean that you use wrong not working code. Link to comment Share on other sites More sharing options...
thestratocaster Posted July 9, 2013 Author Share Posted July 9, 2013 <?php /* * 2007-2013 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_CAN_LOAD_FILES_')) exit; class Blockcontactinfos extends Module { public function __construct() { $this->name = 'blockcontactinfos'; if (version_compare(_PS_VERSION_, '1.4.0.0') >= 0) $this->tab = 'front_office_features'; else $this->tab = 'Blocks'; $this->version = '1.0'; parent::__construct(); $this->displayName = $this->l('Block contact info'); $this->description = $this->l('This module will allow you to display your e-store\'s contact information in a customizable block.'); } public function install() { return (parent::install() && Configuration::updateValue('blockcontactinfos_company', Configuration::get('PS_SHOP_NAME')) && Configuration::updateValue('blockcontactinfos_address', '') && Configuration::updateValue('blockcontactinfos_phone', '') && Configuration::updateValue('blockcontactinfos_email', Configuration::get('PS_SHOP_EMAIL')) && $this->registerHook('header') && $this->registerHook('footer')); } public function uninstall() { //Delete configuration return (Configuration::deleteByName('blockcontactinfos_company') && Configuration::deleteByName('blockcontactinfos_address') && Configuration::deleteByName('blockcontactinfos_phone') && Configuration::deleteByName('blockcontactinfos_email') && parent::uninstall()); } public function getContent() { $html = ''; // If we try to update the settings if (isset($_POST['submitModule'])) { Configuration::updateValue('blockcontactinfos_company', ((isset($_POST['company']) && $_POST['company'] != '') ? $_POST['company'] : Configuration::get('PS_SHOP_NAME'))); Configuration::updateValue('blockcontactinfos_address', ((isset($_POST['address']) && $_POST['address'] != '') ? $_POST['address'] : '')); Configuration::updateValue('blockcontactinfos_phone', ((isset($_POST['phone']) && $_POST['phone'] != '') ? $_POST['phone'] : '')); Configuration::updateValue('blockcontactinfos_email', ((isset($_POST['email']) && $_POST['email'] != '') ? $_POST['email'] : Configuration::get('PS_SHOP_EMAIL'))); $this->_clearCache('blockcontactinfos.tpl'); $html .= '<div class="conf confirm">'.$this->l('Configuration updated').'</div>'; } $html .= ' <h2>'.$this->displayName.'</h2> <form action="'.Tools::htmlentitiesutf8($_SERVER['REQUEST_URI']).'" method="post"> <fieldset> <p><label for="company">'.$this->l('Company name').' :</label> <input type="text" id="company" name="company" value="'.Tools::safeOutput(Configuration::get('blockcontactinfos_company')).'" /></p> <p><label for="address">'.$this->l('Address').' :</label> <textarea id="address" name="address" cols="60" rows="4">'.Tools::safeOutput(Configuration::get('blockcontactinfos_address')).'</textarea></p> <p><label for="phone">'.$this->l('Phone number').' :</label> <input type="text" id="phone" name="phone" value="'.Tools::safeOutput(Configuration::get('blockcontactinfos_phone')).'" /></p> <p><label for="email">'.$this->l('Email').' :</label> <input type="text" id="email" name="email" value="'.Tools::safeOutput(Configuration::get('blockcontactinfos_email')).'" /> </p> <div class="margin-form"> <input type="submit" name="submitModule" value="'.$this->l('Update settings').'" class="button" /></center> </div> </fieldset> </form> '; return $html; } public function hookHeader() { $this->context->controller->addCSS(($this->_path).'blockcontactinfos.css', 'all'); } public function hookleftColumn($params) { if (!$this->isCached('blockcontactinfos.tpl', $this->getCacheId())) $this->smarty->assign(array( 'blockcontactinfos_company' => Configuration::get('blockcontactinfos_company'), 'blockcontactinfos_address' => Configuration::get('blockcontactinfos_address'), 'blockcontactinfos_phone' => Configuration::get('blockcontactinfos_phone'), 'blockcontactinfos_email' => Configuration::get('blockcontactinfos_email') )); return $this->display(__FILE__, 'blockcontactinfos.tpl', $this->getCacheId()); } } ?> Link to comment Share on other sites More sharing options...
harishsan Posted November 28, 2014 Share Posted November 28, 2014 How to add left column in index page, i saw u r tutorial video veika, but in my theme didn't occur edit option in default-bootstrap.how can i add my left column in index page default-bootstrap version 1.0Designed by PrestaShop 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