-
Posts
230 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Mian Waqas
-
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
-
Thanks for this, and how can this be hide from checkout until shipping step? Regards
- 19 replies
-
- free shipping
- text
-
(and 1 more)
Tagged with:
-
Hide Product Quantity Drop-Down Menu - PS 1.7
Mian Waqas replied to netchemist's topic in General topics
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; } -
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
-
[solved]Reser password accepts e-mail but there is no account
Mian Waqas replied to Poehnixzz's topic in Bug reports
Yes you can use translator , to add extra text with it if you want. 'This post should be considered solved now" -
[solved]Reser password accepts e-mail but there is no account
Mian Waqas replied to Poehnixzz's topic in Bug reports
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 -
so i need to achieve this, Anyone?
-
The value is already saved in database isnt it? we just need to create the function or something.
-
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
-
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
-
Prestashop 1.7.3.2 issue on changing product combination image
Mian Waqas replied to iupaem's topic in 1.7.2.x [Current]
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- 1 reply
-
- prestashop
- 1.7.3.2
-
(and 4 more)
Tagged with:
-
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
-
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
-
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
-
Prestashop 1.7 - Faceted search in search results
Mian Waqas replied to asterisco's topic in General topics
@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 -
Disable order confirmation email for Bank Wire module only
Mian Waqas replied to Mian Waqas's topic in General topics
this works but a minor change of $order rather then "order" if ($order->module != 'ps_wirepayment') { -
Disable order confirmation email for Bank Wire module only
Mian Waqas replied to Mian Waqas's topic in General topics
sorry , where is this page? in modules? -
Disable order confirmation email for Bank Wire module only
Mian Waqas replied to Mian Waqas's topic in General topics
but what condition ? so that it should not send the email if bank transfer is the payment mode. not other payment methods -
Disable order confirmation email for Bank Wire module only
Mian Waqas replied to Mian Waqas's topic in General topics
the order confirmed emails are never in the status. please read my request again. Thanks -
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
-
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