Jump to content

Mian Waqas

Members
  • Posts

    230
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mian Waqas

  1. Hi, I have a question regarding Free shipping, as you all know that it always shows Free (because it is selected by default in back office carriers) until it has been changed in carrier selection step. so what I need guidance on is that I want to hide the shipping cost until "shipping method" step in check out. (or possibly if it says "To be calculated on next step" ) here is the cartpresenter.php code , which i guess shall need modifying ? if (isset($deliveryOptionList) && count($deliveryOptionList) > 0) { foreach ($deliveryOptionList as $option) { foreach ($option as $currentCarrier) { if (isset($currentCarrier['is_free']) && $currentCarrier['is_free'] > 0) { $shippingDisplayValue = $this->translator->trans('Free', [], 'Shop.Theme.Checkout'); break 2; Will be great full with a Cup Best Regards
  2. Thanks for this, and how can this be hide from checkout until shipping step? Regards
  3. Hi, Well your question is not complete, please tell me why do you want to hide this box? how will customer change the quantity. if you still want to hide it just add this simple css code to custom.css , after this the add to cart button will still work. it will always add 1 quantity of product to customer cart. .product-quantity .qty { display: none; }
  4. Please Downgrade it not upgrade... to turn on Debbug mode manually please read this guide https://zemez.io/support/prestashop/how-to/prestashop-1-7-enable-debug-mode-display-errors/#:~:text=In your PrestaShop admin panel,Save the changes. Regards
  5. Please turn on Debug mode and post the error. Seems PHP 7.3 is not compatible with one of your module, also try to downgrade the PHP version and check. Best regards
  6. Hi, It is taking 3 seconds for add to cart pop up (which is almost normal) please disable all non native modules specially(Google or any other Analytics/ Mailchimp) and then give it a try. But again , this is the normal speed of the add to cart popup, you can check in other PS shops for satisfaction. Thanks
  7. Yes you can use translator , to add extra text with it if you want. 'This post should be considered solved now"
  8. Hi, it does not says that mail has been sent rather it says "If this email address has been registered with our store, you will receive a link to reset your password at ...@..." The function which says that "there is no email registered" is for the security reasons , and yes it can be override with your choice but still please check again what exactly it says. I hope you will understand
  9. so i need to achieve this, Anyone?
  10. The value is already saved in database isnt it? we just need to create the function or something.
  11. Hi, Thanks for replying, i had noticed it and i know about it that it filter by Price, to clarify the confusion of my first message, I want to filter it by "highest discounts & Lowest discount". so the page will show products with highest amount of discount & vise versa. Hope you all getting my point. Regards
  12. Hi, there are default sort orders in PS 1.7 like > (new SortOrder('product', 'price', 'asc'))........ (new SortOrder('product', 'date_add', 'asc'))->setLabel( etc etc but what i want to know that is it possible to get SortOrder by Pricedrop? so that it will show product by asc or des DropPrice list, and obviously i will place it on PriceDrop page only. which should be like (new SortOrder('product', 'dropPrice', 'asc')) Thanks
  13. hi , this is 110% related to the theme conflicting the JS in it. you can ask the theme support to fix it, or you can installed default or new theme , or you can install a module "Magic zoom plus/or other product gallery thumbnails" which will override it. Regards
  14. Hi, This error is occurring because your template or one of your module are not compatible with PHP 7.4 , please try to downgrade the php version as per your prestashop version. try with 7.2 , 7.0 or 5.6 it will get fix. also a work around is you can disable the debug mode and the error wont show up. thanks
  15. Hi, I am trying to automatically change customer based on amount ($3000) spent in one year. how i can achieve this, any help will be appreciated. Thanks in advance
  16. Hello, Please downgrade to PHP 7.2 & then test with PHP 7.0 if the earlier does not fix it. Dont forget to clear the cache after changing it. Please also check cache on your server side if its enable. Regards Regards
  17. @everyone As i told you earlier , prestashop Native theme does not offer this feature. you have to buy a module for this or other themes provide this feature as well. My apologizes for this Regards
  18. this works but a minor change of $order rather then "order" if ($order->module != 'ps_wirepayment') {
  19. but what condition ? so that it should not send the email if bank transfer is the payment mode. not other payment methods
  20. the order confirmed emails are never in the status. please read my request again. Thanks
  21. Hi, When a customer orders with "Bank Wire" module, he receives 2 emails, "Order confirmation & Awaiting payment by bank transfer" so i want to disable the "Order confirmation" email for bank wire only. Please note that this email shall be sent with other payment methods. the method in below link remove this email entirety from all payment modules. so if anyone know {IF} statement to be wrote here so that when its "bank wire" method the email shall not sent. http://www.module-addon.com/2019/02/disable-order-confirmation-email-in.html Thanks in advance
  22. Hi, How can this form be achieved on customer login page in PS 1.7.6. side by side , rite now its just one login form & a link "No account - Create one" at the bottom. thanks in advance
×
×
  • Create New...