Jump to content

wildcherry

Members
  • Posts

    34
  • Joined

  • Last visited

Profile Information

  • Activity
    User/Merchant

Recent Profile Visitors

6,509,761 profile views

wildcherry's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I've spent days looking around for a solution, but it seems that none ever had the same problem... And I don't understand why I cant set the line spacing in the text edit in back office...
  2. Hello everyone, I have a problem with line height, both in product description and category description and manufacturer... In text editor, if I choose font size 10pt, I get all lines joined, without any useful space in order to read easily. I paste content from word, but even if I use a big line spacing in word, then once pasted the space disappears. If I choose font size 8, all is fine. I guess it's a line height issue, but I don't have any idea where to change that. I would like also to choose font size 9pt, but that is not in the options available: I can only choose between 8 and 10. I need to fix this before I upload all my products. I'm working on PS 1.5.6, on local server. Does anyone know the solution? Cheers. Chiara
  3. Ciao, ho un negozio fisico dal 2011 ed ora sto lavorando in locale sul mio macBook con Prestashop 1.5.6 per cominciare a vendere anche online. Non l'ho aggiornato alla versione nuova in quanto ho fatto delle modifiche al tema: ho cambiato colori, dimensioni e distanze, il tutto cercando le soluzioni sul forum. Ora sto inserendo i prodotti pian piano, ma ho ancora delle modifiche da fare, come ad esempio aggiungere i Preferiti al Blockpermanenlinks, aggiungere i prodotti in offerta nel Topbarmenu, modificare un modulo, modificare il footer, e cose del genere. Nonche' anche un po' di dubbi da chiarire. Mi rendo conto che se dovessi sistemare tutto io ci metterei 10 anni, quindi ho bisogno di una persona capace e appassionata (preferibilmente in diretta, tramite Skype e TeamViewer o qualcosa del genere) adesso e di tanto in tanto; e inoltre che sappia anche assicurarmi di avere il negozio in regola per andare online, quindi che sia aggiornato con la normativa. Al momento non ho possibilità' di fare contratti perché prima di potermelo permettere devo riuscire a guadagnare dalla mia attività', quindi vorrei un servizio ad ore su richiesta. Di aziende che offrono questo servizio ho visto che ce n'e' tante, ma io non ho bisogno di avere fattura, perché' non mi posso permettere di pagare altre tasse;-) e inoltre vorrei avere al mio fianco sempre la stessa persona…non oggi Matteo, domani Sara e dopodomani Andrea. Se ti ritrovi con quello che ho scritto, mandami un messaggio privato con qualche dettaglio su di te, poi magari ci sentiamo per telefono! Grazie per il tuo tempo. Chiara
  4. Solved it!!!! I've deleted file setting.inc.php (since that is created when you install prestashop), then I put in my prestashop folder the folder install (i took it from a new download of prestashop, same version), then I put the url localhost:8888 and clicked on the prestashop folder. The installation process started and now I have my website back!
  5. Hello! I was working on local server with Ps 1.5.6 and downloaded MAMP. I've done few changings to html files. Now it's happened that I've deleted MAMP and have downloaded it again on my mac (version 1.9.6, same that I was using). Now when I put the link to my 127.0.0.1:8888/prestashop/admin as I usually do to go to my backoffice, I get this message "Link to database cannot be established: SQLSTATE[42000] [1049] Unknown database 'prestashop'". Same when I try to go to my front office. I've already checked file setting.inc.php (in config folder) and all is same as before, because I didn't do any change to prestashop files. When I edit localhost:8888 it takes me to the following page, but if I click on prestashop folder I get the same message as above. Index of / Name Last modified Size Description prestashop/ 07-Oct-2013 13:28 - Apache/2.0.64 (Unix) PHP/5.3.5 DAV/2 Server at localhost Port 8888 Can anyone help me to get back to my website please?
  6. PS 1.5.6 Default theme. Working on local server When I click on a Supplier in front office (from the suppliers list on the left), the page displays this title: Products list by supplier: "Supplier's name" I want to delete "Products list by supplier" and keep only the supplier's name as title of the page. I spent hours searching for a solution ...but I couldn't find anything. Now I have to ask someone to help me, please!
  7. Thanks for your help. Unfortunately I'm not that good in creating funtions... Don't you think there is something wrong?..since the following is my Favoriteproducts.php if (!defined('_CAN_LOAD_FILES_')) exit; class FavoriteProducts extends Module { public function __construct() { $this->name = 'favoriteproducts'; $this->tab = 'front_office_features'; $this->version = 1.0; $this->author = 'PrestaShop'; $this->need_instance = 0; parent::__construct(); $this->displayName = $this->l('Favorite Products'); $this->description = $this->l('Display a page featuring the customer\'s favorite products.'); } public function install() { if (!parent::install() || !$this->registerHook('displayMyAccountBlock') || !$this->registerHook('displayCustomerAccount') || !$this->registerHook('displayLeftColumnProduct') || !$this->registerHook('extraLeft') || !$this->registerHook('displayHeader')) return false; if (!Db::getInstance()->execute(' CREATE TABLE `'._DB_PREFIX_.'favorite_product` ( `id_favorite_product` int(10) unsigned NOT NULL auto_increment, `id_product` int(10) unsigned NOT NULL, `id_customer` int(10) unsigned NOT NULL, `id_shop` int(10) unsigned NOT NULL, `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL, PRIMARY KEY (`id_favorite_product`)) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8')) return false; return true; } public function uninstall() { if (!parent::uninstall() || !Db::getInstance()->execute('DROP TABLE `'._DB_PREFIX_.'favorite_product`')) return false; return true; } public function hookDisplayCustomerAccount($params) { $this->smarty->assign('in_footer', false); return $this->display(__FILE__, 'my-account.tpl'); } public function hookDisplayMyAccountBlock($params) { $this->smarty->assign('in_footer', true); return $this->display(__FILE__, 'my-account.tpl'); } public function hookDisplayLeftColumnProduct($params) { include_once(dirname(__FILE__).'/FavoriteProduct.php'); $this->smarty->assign(array( 'isCustomerFavoriteProduct' => (FavoriteProduct::isCustomerFavoriteProduct($this->context->customer->id, Tools::getValue('id_product')) ? 1 : 0), 'isLogged' => (int)$this->context->customer->logged, )); return $this->display(__FILE__, 'favoriteproducts-extra.tpl'); } public function hookDisplayHeader($params) { $this->context->controller->addCSS($this->_path.'favoriteproducts.css', 'all'); $this->context->controller->addJS($this->_path.'favoriteproducts.js'); return $this->display(__FILE__, 'favoriteproducts-header.tpl'); } } and it looks like "favorite" should display in the header in the homepage, but I don't have any Favorite in the home page...
  8. What should I do to make it display in Homepage? Like for example in My account in the footer?
  9. Hello, the "favourite products" module is in the following positions: My account block New elements in the product page (left column) Pages header Customer account displayed in front office So only 4 positions...
  10. I've checked Blockmyaccount.tpl There's no Favourite. But when I click on My account on the Front Office, I get Favourite at the end of the list. I guess it should display in the home page too...cause a customer is not supposed to chase his Favourites on the website... Any help please?
  11. PS 1.5.6 Default theme. I'm working on local server, on a Mac. I checked the module "Favourites" in BO: it's there. Installed. So I don't understand why it's not displaying in front office.
  12. Yes, perfect! Thank you for helping. I was wondering if the column in the dropdown could follow the text lenght. I mean the longer the text, the wider the column...
  13. PS 1.5.6 Default theme Tophorizontal menu. In the dropdown menu some text doesn't fit in the column. I'd like to widen only the second column of dropdown menu, cause the first column coming down from topmenu hasn't got long words. Is that possible?
  14. Got the solution! In Blockuserinfo.tpl, before <ul id="header_nav"> add this line: <br class="clear"/> It works!
×
×
  • Create New...