eguido Posted April 5, 2010 Share Posted April 5, 2010 Ciao a tutti.... dunque ho installato la versione 1.3 di prestashop che anche se magari non e stabile... diciamo che è il prossimo futuro quindi incomincio a giocare con questa per poi vedere di installare la versione stabile quando ci sarà.Ho provato a leggere in giro un po di tutorial e a cercare nel forum ma non trovo, e chiedo scusa se esiste gia un post del genere ma non riesco a trovarlo, ad aggiungere un box vuoto ad una colonna.Vorrei infatti aggiungere un box con dentro semplicemente una scritta e il campo di ricerca ma non trovo come inserire la cosa. Qualcuno di voi puo aiutarmi? Ciao a tutti! Link to comment Share on other sites More sharing options...
RuletZ Posted April 5, 2010 Share Posted April 5, 2010 Ciao, guarda QUI se fa al caso tuo. Link to comment Share on other sites More sharing options...
vinoalvino Posted April 5, 2010 Share Posted April 5, 2010 Sperando tu ne capisca di php ... devi fare una cartella (ammettiamo blockfind) e metterla dentro a prestashop/modulesDentro ci devono essere almeno due file:blockfind.php <?php /** * * Generated with modMaker (version 0.1) by vinoalvino (free to use!) */ class BlockFind extends Module { public function __construct() { $this->name = 'blockfind'; $this->tab = 'Blocks'; $this->version = 0.1; /* The parent construct is required for translations */ parent::__construct(); $this->error = false; $this->valid = false; $this->page = basename(__FILE__, 'blockfind.php'); $this->displayName = $this->l('My new block'); $this->description = $this->l('Adds a new block'); } public function install() { if (!parent::install() OR !$this->registerHook('leftColumn')) return false; return true; } public function uninstall() { if (!parent::uninstall() ) return false; return true; } function hookLeftColumn($params) { global $smarty, $cookie; return $this->display(__FILE__, 'blockfind.tpl'); } function hookRightColumn($params) { return $this->hookLeftColumn($params); } public function getContent() { $output = ''.$this->displayName.''; if (Tools::isSubmit('submitBlockFind')) { Configuration::updateValue('VAR_OPTION', intval($varMsk)); } } } e blockfind.tpl <!-- Block My new block --> {l s='Block Title' mod='blockfind'} <!-- /Block My new block --> Se ti serve qualcosa di fisso basta che lo scrivi dentro al tpl come fosse html Link to comment Share on other sites More sharing options...
ciroco05 Posted April 7, 2010 Share Posted April 7, 2010 Ciao, Vorrei infatti aggiungere un box con dentro semplicemente una scritta e il campo di ricerca ma non trovo come inserire la cosa. molto semplicemente, puoi utilizzare il blocco ricerca rapida: da Bo lega un modulo ad un gruppo lo selezioni e lo posizione nella colonna dx o sx. Per inserire una scritta basta editare il tpl del modulo in questione (ovviamente come diceva vino se ti serve una scitta fissa)Ciroco05 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