-
Posts
230 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Mian Waqas
-
Great to hear! Regards
-
Checkout Page Only Shows One Payment Method?
Mian Waqas replied to Adnan Nahri's topic in General topics
no you dont need modification in Payment.tpl normally... Are you using onepage checkout? which PHP version are you using? the payment modules are configured properly? "i suspect the payment module are not configured properly!"- 10 replies
-
- 1.7.4.2 prestashop
- adminmodulespositions
- (and 2 more)
-
Checkout Page Only Shows One Payment Method?
Mian Waqas replied to Adnan Nahri's topic in General topics
What about the Carrier & Country restriction below on this page? are they checked?- 10 replies
-
- 1.7.4.2 prestashop
- adminmodulespositions
- (and 2 more)
-
Please place this code in your Public_html/themes/"your theme folder"/assets/css/custom.css file and clear your cache from backoffice .products .product-thumbnail { display: flex; } Please note that this is temporary fix and you need to contact your theme dev to fix the issue properly. Regards
-
Do you receive order emails? What emails are configured in Backoffice>Shop Parameters>Contact and what are the setting at the bottom in Backoffice>Advance parameters>Emails Regards
-
As i told you please select the other products in there and leave the 20. and create the rule. Regards
-
Please can you share url of the page in which reference is showing? also had you cleared the cache?
-
Maybe this can help!
-
you can create one or you can try adding it to theme.css file there. or your theme-module in back office have custom css options to set. Regards
-
Go to Catalog>discounts>Cart rules > create a new cart rule 1. Fill the information tab. 2. In Terms Tab click on "prodcuts selection checkbox" at the bottom, select Products in "Add a relative to rule" and add> chosse your 20 products there. fill the rest of the data in this tab as per your choice. 3. In Action tab select free shipping to "YES" . Save it and the shipping will be free for that 20 products irrespective of any shipping costs for other products, OR select the other products and leave the 20 products (which then will not be free shipping). you have actually to play with it for a while to understand its process Regards Hit love button if you find this helpfull.
-
hi, you can simply hide it via css i.e. placing this in your Theme/Assets/Css/Custom.css file .product-reference {Display:none!important;} or you can comment out this in your Theme Tpl files usually in product.tpl & category.tpl (depends on your theme structure) Please hit love button above if you finds this usefull Regards
-
Product catalog, color problem for quantity 0.
Mian Waqas replied to mirkodescalchi's topic in General topics
Hello, Please follow this> Edit: public_html/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/list.html.twig file on line 64 find {% if 'PS_STOCK_MANAGEMENT'|configuration %} and add this code after/below After {% if 'PS_STOCK_MANAGEMENT'|configuration %} Replace the code to this (please look at the screenshot where it should be) {% if product.sav_quantity == 0 %} <td class="product-sav-quantity text-center" data-product-quantity-value="{{ product.sav_quantity|default('') }}"> <a href="{{ product.url|default('') }}#tab-step3" style="background:red; padding: 5px 5px;"> {% if product.sav_quantity is defined and product.sav_quantity > 0 %} {{ product.sav_quantity }} {% else %} {{ product.sav_quantity|default('N/A'|trans({}, 'Admin.Global')) }} {% endif %} </a> </td> {% else %} <td class="product-sav-quantity text-center" data-product-quantity-value="{{ product.sav_quantity|default('') }}"> <a href="{{ product.url|default('') }}#tab-step3"> {% if product.sav_quantity is defined and product.sav_quantity > 0 %} {{ product.sav_quantity }} {% else %} {{ product.sav_quantity|default('N/A'|trans({}, 'Admin.Global')) }} {% endif %} </a> </td> {% endif %} {% else %} <td></td> {% endif %} save it, clear cache and then check the results! (you can play with it along if you need deffirent areas in red) Please hit the like button if you find this helpful Regards -
yes its possible via back office, please create a new "Discount cart rule" and you can easily define it there. Regards
-
do you mean that they shall not go to client email address and only show up in back office?
-
Please can you send url of the page?
-
Please increase the Max Execution time to at least 300 - you can do it in host panel or in php.ini file in root directory Secondly your version of PS is 1.6.1 so it seems you have few modules which does not runs correctly with PHP 7.0 . Please downgrade the PHP version to 5.6 (which is recommended for PS 1.6) and then try again (dont forget to clear cache afterwards). Also it seems you havnt installed SSL certificate (you can install the free SSL) and turn on friendly URL which will regenerate .htaccess file, (i had noticed redirections on your store) this might fix your issue as well. Please note that some of the Host panels do not provide older PHP versions. which shall be an issue for you. Best of luck
-
The path is root... usually public_html/.htaccess i mean the main directory of your prestashop. Regards
-
Please turn of friendly url in backoffice> seo and url , and then delete .htaccess file or rename it for backup- it will be in the root directory. afterwards turn back on friendly url again to regenrate the htaccess file. Regards
-
please can you share your backoffice>advance preferences> information page screenshot?
-
Please clear cache, go to Prestashop folder/Var/Cache and remove dev and prod folders there or rename them. Secondly as Prestachamps said to activate the debug mode via defines.inc.php file. which then will show you the errors and you can go thorugh fixing them. Please also clear cookies of your browser, (check in deffirent browser as well) Regards
-
This is theme issue, you can fix this via css or via modifying category.tpl file... Via CSS you can hide the second image dev, or check in tpl and remove the duplications. Please contact theme developer if you are not an expert in coding. Regards
-
Cannot access to backoffice after upgrading to Prestashop 1.7.7.4
Mian Waqas replied to libreriasemola's topic in Bug reports
The issue is because PHP 7.3 have some compatiablity issues after you upgrade to 1.7.x so try with PHP 7.2 or PHP 7.4 hopefully that will fix the issue for many stores. Regards -
Please disable "labcategoryfeature" module, and ask the module/theme support to fix it. Regards