Jump to content

CarpalWatch.com

Members
  • Posts

    13
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Singapore

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

CarpalWatch.com's Achievements

Newbie

Newbie (1/14)

9

Reputation

  1. Ok, works now. Check it out on my webstore : http://www.carpalwatch.com/shop Had to add target="_blank" in xXX_form.tpl to make it work in quick view...Anyone knows how to close quick view and load the form? Steps: 1) Add the following above hookProductFooter() - Not sure if that affects it but nevertheless. public function hookProductActions() { $content = (!$this->useMobile()) ? $this->renderExpressCheckoutButton('product') : null; return $content.$this->renderExpressCheckoutForm('product'); } Save the file. 2) Add target="_blank" in <form> in express_checkout_shortcut_form.tpl 3) Remove {if isset($include_form) && $include_form} /if> in express_checkout_shortcut_button.tpl 3) Go to Transplant a module and hook Paypal to DisplayProductButtons 4) Remove Paypal from DisplayFooterProduct 5) Clear Cache and good luck!
  2. yes, it is! I'm using it too! and I made some customisation with the import so now I have a complete inventory (instock, outstock, stocktake, reload values for items with combinations) for multistores + pos + webstore! Can export combinations with quantities, sales and stock on hand! hit me up if anyone is interested! I'm selling!
  3. create a carrier select the countries select shipping in one of the products that you wish to restrict. Go to ps_product_carrier Find the product by its id and get the carrier reference. get the ids of all the products you wish to restrict. (can export from the products page) create a 3-column csv file corresponding to the ps_product_carrier table and paste all e ids and set the carrier ref to be the same as the one found earlier and the id_shop. For bulk updating.
  4. Just want to highlight that if you have multi-stores enabled but only using one store, you need to check that the sa.id_shop=<id of the shop in use>, otherwise it will just scan through all stores and the above code will not work...
  5. Kyle, you need to make some changes to the codes in AdminImportController before you can import using the csv. file that you have just extracted as Combination tables work with product ids only...
  6. Solved! =) Thank you, Vekia! The key lies in "\f16d" in global.css. Just open the file and find all instances of pinterest or facebook. Copy and paste and replace with instagram and "\f16d". Cheers, Vern http://www.carpalwatch.com/shop
  7. It also does not work when you have more than 153 items in the category.
  8. It's pretty tedious. You need to start from stock_available table and left join to product_attribute tables and the language tables and to attribute table and so forth. id_product_attribute and id_attribute I joined about 8 tables to get all the information needed. Select DISTINCT. Lastly, you need to concatenate row values in the exported csv if your items have colours and sizes as they will have the same id_attribute.
  9. Erm...try using the SQL manager in prestashop to create your own SQL query to export values. Beats any of the customized solution with fanciful GUIs.=) I just did one with the following fields. Now I can do a backup of all the combinations and import them again! supplier_reference ProdName id_product AttribGrpName id_attribute group_type AttribGrpPos AttribValue AttribPos quantity ShopName ShopGroup Cheers, Vernon http://www.carpalwatch.com/shop
  10. Hello, I managed to solve it myself...No one's ever gonna help you here, my friend. Even Prestashop is selling their support service. Need to edit the code in AdminImportController attributeImport( ). if (isset($info['quantity']) && $info['depends_on_stock'] == 0) { if (Shop::isFeatureActive()) foreach ($shops as $shop) => foreach ($info['shop'] as $shop) Cheers, Vernon http://www.carpalwatch.com
  11. Hi All, I was using version 1.1 and tried to update to the latest 1.4 version but encountered alot of errors even though the update page says it was successful. So I decided to revert to the old version. I executed all the SQL queries from the backup file that I had downloaded from the backoffice before the update. After I had done that, I tried to access my website and saw an "Invalid loadLanguage() SQL query!" error. Is there any other procedures that I am missing out in order to revert to the old version?
×
×
  • Create New...