Jump to content

syntaxed

Members
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Activity
    User/Merchant

syntaxed's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. seriously, I don't know how you guys get that different type of quotes. I only manage to get just ' so far. I'll look more into this. Thanks
  2. Thanks! that works great. I'm sorry, but I have another silly question. How do I even type that type of quote on my keyboard?
  3. Hi. I am trying to set up shipping cost per item based on weight and I'm still new with SQL. 1. How can I update all the weight of each item in my store to 1 using SQL query? 2. How can I set the default weight of new item as 1? I tried the following query but it gives the error below. Currently running the 1.5.4.1 prestashop update 'ps_product' set weight=1 The error:
  4. Thanks for the tips. It will need a lot of work to set that for all products, though.
  5. I have new visitors from 404 pages. Instead of just redirecting them, I offer a special voucher at that 404 page to attract them searching my store, instead of 'forcing' them to view things they are not originally looking for. do you all think it is a good thing to do?
  6. doubleD, thanks for the help, although it appears that the block is not suitable to be placed at homepage content in my site
  7. I followed the step above and got an error in my modules page at back office This is the hook I created in 404.tpl {hook h='404captainhook'} This is the module I created in module/rajamodule/rajamodule.php class MyModule extends Module { function __construct() { $this->name = 'mymodule'; $this->tab = 'advertising_marketing'; $this->author = 'Your name'; $this->version = '1.0'; $this->need_instance = 0; parent::__construct(); $this->displayName = $this->l('My Module'); $this->description = $this->l('Example of module'); } public function install() { // Here the registerHook method will check if the hook exists, if not it will add it to table ps_hook return (parent::install() AND $this->registerHook('404captainhook'); } public function hook404captainhook($params) { return 'myDisplay'; } } Can anyone help?
  8. ExpiresActive On ExpiresByType image/gif "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType text/css "access plus 1 week" ExpiresByType text/javascript "access plus 1 week" ExpiresByType application/javascript "access plus 1 week" ExpiresByType application/x-javascript "access plus 1 week" ExpiresByType image/x-icon "access plus 1 year" I only have these in my .htaaccess and i'm experiencing the same problem
  9. It will be really helpful if you could share your finding with other as well. thanks
  10. I'm in need of cost per item as well. Most others are suggesting on setting shipping cost with regard to the weight of product, instead of items quantity though. Guess the easy solution won't be around soon
×
×
  • Create New...