Jump to content

aboji

Members
  • Posts

    7
  • Joined

  • Last visited

1 Follower

Profile Information

  • Activity
    Agency

aboji's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello, I am looking for one or more Prestashop developers for module creation and customization. I will have module work on a regular basis so I am looking for a developer that is interested in a long-term relationship. Please send me some information through PM regarding yourself, such as your experience with Prestashop and PHP, hourly rate, how many hours approx you are available per week etc and then we can discuss more details. Thanks!
  2. Hello, I'm dealing with a shop with more than 50k+ products that have multishop enabled and have one shop per language. So shop 1 only has language 1 enabled. Shop 2 only has language 2 enabled. Shop 3 only has language 3 enabled and so on. The issue is that even though shop 1 only has language 1 enabled, language 2,3,4 and so on is still stored for this shop in the product_lang table in database and now this table is multiple GB in size and slowing down the site. Since shop 1 only has language 1 enabled the other languages for shop 1 is just using unnecessary database resources. Any ideas on how to solve this? Is it safe to just remove all records in database table where shop = 1 and language != 1, shop = 2 and language != 2 and so on? What would the SQL query be and how do we prevent Prestashop from re-adding to the database when updating products?
  3. Hello, I am trying to speed up a slow prestashop site and after a lot of debugging I have found that the blocktopmenu module takes about 3 seconds to run the displaytop hook. It is the makeMenu function that takes about 3 seconds but looking at the code it is supposed to cache it. However, it seems like the makemenu function is always runned and never taken from cache. I have made sure smarty cache is enabled. Any ideas on how to solve this or debug further? I appreciate any help I can get! Here is the code: public function hookDisplayTop($param) { $this->user_groups = ($this->context->customer->isLogged() ? $this->context->customer->getGroups() : array(Configuration::get('PS_UNIDENTIFIED_GROUP'))); $this->page_name = Dispatcher::getInstance()->getController(); if (!$this->isCached('blocktopmenu.tpl', $this->getCacheId())) { if (Tools::isEmpty($this->_menu)) { $this->makeMenu(); } $shop_id = (int)$this->context->shop->id; $shop_group_id = Shop::getGroupFromShop($shop_id); $this->smarty->assign('MENU_SEARCH', Configuration::get('MOD_BLOCKTOPMENU_SEARCH', null, $shop_group_id, $shop_id)); $this->smarty->assign('MENU', $this->_menu); $this->smarty->assign('this_path', $this->_path); } $html = $this->display(__FILE__, 'blocktopmenu.tpl', $this->getCacheId()); return $html; }
  4. Hello, We have multiple custom modules that we need created, both big and small projects, and are therefore looking for one or more developers/freelancers that are available to do custom work. We are looking for a long term cooperation as we usually have custom work needed every month. We would prefer someone that has worked with Prestashop and have experience developing Prestashop modules. Please send me a PM if you are interested. Please send this information together with a short presentation: 1. For how long have you worked with Prestashop? 2. Can you send us some example/s of your previous work? 3. What is your hourly charge? 4. How many hours a month or week are you approximately available to work on average? I will get back to you through PM with more details. Thanks!
  5. Hello, We want to use delayed shipping so that when customer orders multiple products and some of them are not in Stock, PrestaShop would split the orders in two. There is one problem though. We only want to charge the customer 1 shipping fee but PrestaShop charges two shopping fees since the order is split in 2. What is the best way to edit this behavior and only charge one shipping fee when splitting orders?
  6. Hello, Did you solve this? I have the same issue on one installation recently.
  7. Hello, I am trying to add the product warehouse location in the Supply Order List when updating received items. (AdminSupplyOrdersController, updatereceipt action) I understand that this should be pretty easy too add with an JOIN statement but not sure on how to write it exactly. Has anybody done this or know how to fix this? Thanks!
×
×
  • Create New...