-
Posts
23 -
Joined
-
Last visited
Profile Information
-
Activity
User/Merchant
syntaxed's Achievements
Newbie (1/14)
3
Reputation
-
[Solved] SQL Query to mass update product weight
syntaxed replied to syntaxed's topic in Core developers
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 -
[Solved] SQL Query to mass update product weight
syntaxed replied to syntaxed's topic in Core developers
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? -
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:
-
Additional Shipping Cost Per Item.... +2, +3, +4 items etc
syntaxed replied to MartyW's topic in Core developers
Thanks for the tips. It will need a lot of work to set that for all products, though. -
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?
-
Hook New Products Block In Homepage Content
syntaxed replied to GoGoMo's topic in Configuring and using PrestaShop
doubleD, thanks for the help, although it appears that the block is not suitable to be placed at homepage content in my site -
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?
-
Cart Not Updating without Force Refresh CTRL+F5
syntaxed replied to kvwebmaster's topic in Configuring and using PrestaShop
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 -
Cart Not Updating without Force Refresh CTRL+F5
syntaxed replied to kvwebmaster's topic in Configuring and using PrestaShop
what is the value that you would suggest? -
Newsletter confirmation email - how to edit?
syntaxed replied to Jacas's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
It will be really helpful if you could share your finding with other as well. thanks -
Flat shipping rate independent from items quantity
syntaxed replied to howtwizer's topic in Configuring and using PrestaShop
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