Jump to content

infisual

Members
  • Posts

    17
  • Joined

  • Last visited

Profile Information

  • First Name
    Info
  • Last Name
    Visualization

Recent Profile Visitors

291 profile views

infisual's Achievements

Newbie

Newbie (1/14)

5

Reputation

  1. I created a ticket BOOM-3268 a while ago. I just received a notification that they made a fix but I did not try it yet, see the comment tab. I will update you here. http://forge.prestashop.com/browse/BOOM-3268
  2. I had the same problem when I had 1.6x and it is also in 1.7.1.2 I made a change in the code for 1.6 and 1.7 and it works well for me. All my products have the same attributes S, M, L, etc. The change will now display only the product available with the attribute selected. I did not test it with simple products. I hope the developers can fix issue, it is also shared in BOOM-2025 for 1.6 the change in file: modules/blocklayered/blocklayered.php for 1.7 the change in file: modules/ps_facetedsearch/ps_facetedsearch.php you will need to add the following line JOIN `'._DB_PREFIX_.'stock_available` sa ON (sa.`id_product_attribute`=pac.`id_product_attribute` AND sa.`quantity`>0) so the complete line will like this: foreach ($sub_queries as $sub_query) { $query_filters_where .= ' AND p.id_product IN (SELECT pa.`id_product` FROM `'._DB_PREFIX_.'product_attribute_combination` pac LEFT JOIN `'._DB_PREFIX_.'product_attribute` pa ON (pa.`id_product_attribute` = pac.`id_product_attribute`)'. Shop::addSqlAssociation('product_attribute', 'pa').' JOIN `'._DB_PREFIX_.'stock_available` sa ON (sa.`id_product_attribute`=pac.`id_product_attribute` AND sa.`quantity`>0) WHERE '.implode(' OR ', $sub_query).') '; } good luck
  3. I have the same issue since I moved from 1.6.xx to 1.7.1.1 Still trying to find a way to reduce them I have added a checkbox as a required input next to submit button, but still I have many emails with "newsletter_verif" that are sent to subscribers and then later I receive returned email in my inbox
  4. did anyone experience the same? if I disabled back-order, then why this is happening.
  5. are there wrong setting with my installation, is it only me who has this problem?
  6. if you made the change from db, then make sure the parent is Home (id for home) and the table category_shop has the ID for category and home as well
  7. There should be a validation when "check out" is pressed the same way to was with 1.6. This is a basic function for all platforms. Why it was removed from 1.7 !!!
  8. I am using 1.7.1.1. Not sure if there is bug with 1.7.1.2 in this issue. Check file permission in /app/Resources/translations/en-US I have directory with 755 and file with 666
  9. Hello I tried a simple solution and it worked for me. Use the Translation tools Translation->Themse Translation->classic->Language (En) Search for (tax excl.) where it shows under shop > theme Change the text field: (tax excl.) To: [leave it blank] The same can be done for other pdf files and other fields. regards,
  10. I have PS 1.7.1.1 with deny out of stock orders settings. I had two orders from customers who were able to check out even with product attributes with zero quantities. I found later that since the customer was able to add the product to the cart they can later proceed to payment even if the product was with 0 quantity and even if I deactivated the product. I checked files and directory permission and they are 644 and 755. The old PS 1.6 show an alert on top of the cart for any out of stock or inactive products. It is not happening with 1.7 Is this a bug?
  11. Hi There is a module PrestaShop Cleaner v2.0.0 for 1.7. Under Modules & Services Search it under installed or Selection tab I used in 1.7.1.1 and works fine.
  12. I am using PS 1.7.1.1 and I am facing a major issue with shopping cart not updating quantities of products meaning it allows customer to order any item in the shopping cart regardless. I have backorder disabled and deny order enabled in out of stcok, stock management enable, and no advance stock management For example, if I have a product with active with attributes and lets say size Small had one piece. If two customers added the size small to their shopping cart since the attribute is active. One customer checked and completed the payment and order. However, the other customer can still order whatever was still saved in their shopping cart even with 0 quantities and can proceed to checkout and payment. I received "backorder paid" indication in backoffice. I tested to make one product "inactive" but still, if the product was added to the cart before "inactive" was made, the customer can still proceed to checkout. How can the shopping cart auto update quantities and status of all items before checking out. This is a basic function of all shopping cart platforms..
  13. I am having the same error. The module is installed and activated with no issues. At the last step of order confirmation, when I select either options of PayPal it will just refresh the order confirmation page, no redirection to PayPal. But this was only with Chrome browser. hmmmm I tested it on Internet Explorer and it WORKED !!! it redirects with no problems. What could be wrong in the code that makes it not to work with Chrome, any idea ??
×
×
  • Create New...