-
Posts
230 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Mian Waqas
-
Hi, Did you tried these suggestions? In Back office, I believe add/delete a category or (temporarily) move a category under a new parent and then save it will rebuild the tree structure. (maybe make a category 'tempcat' and put it under any parent. Then save the category. Check if the left and right values are added in the database. Then delete the tempcat afterwards)
-
hi, Please can you share screenshot of the issue you are facing? or link to the page where the issue is? and did you tried by regenerating the images from back office? Regards
-
This seems to be solved (it was not reflecting due to cache) @delconick please can you confirm. Regards
-
i am sorry you are facing issue with the payment modules, but i will again suggest to contact the module dev for further rectification. Regards
-
Were these payment methods appearing fine before the "bugged module" ? and are the setting for these two payment modules , on back office> payment > Preferences... well enough enabled for the countries and carriers?
-
well , the reason i had edited and removed that commit is because you will have to search for a while in that module, that is why i asked to contact the module dev if you are not well skilled with the codes. Kind Regards
-
yes its the issue with the language file, if the error is not appearing while this module is disabled then you can contact the module dev to fix it. thanks
-
Hi, Please add allow_url_fopen = on to your PHP.ini file / or enable Fopen on your host. for further fix please read this topic. Regards
-
Hi, You can install free "Mail alerts Module" deveopled by prestashop . there you can place as much emails as you want who will receive all emails related to new orders. Go to BO > Modules > Catalog, you can search mail alerts to install it. Best regards.
-
Product catalog, color problem for quantity 0.
Mian Waqas replied to mirkodescalchi's topic in General topics
My Apologiez, i have edited the code, please check my last comment which i have replaced and re copy it. (i have also changed the screenshot so that you can see). Regards -
Please place it at the very end, also can you Disable backoffice>advance parameters>performence > "Smart cache" for style sheets (CSS)" and then clear cache. so that way i will be able to see exact location of where to place the code.
-
please get a module for it, there are many free and paid modules for it, and easy to configure. it have its own documentation , step by step guide how to implement it. Regards
-
Yes its grainfoodmarket>assets>css>theme.css even try by creating a new file custom.css in grainfoodmarket>assets>css>custom.css and place the code. did u had placed the code at the very end in the theme.css file? Also clearing cache from back office is very important, as i can see cache is turned on ur store
-
Catalogo prodotti, problema colore per quantità 0.
Mian Waqas replied to mirkodescalchi's topic in Forum generale
Ciao, Sì nuovo codice, Dopo {% if 'PS_STOCK_MANAGEMENT'|configuration %} Sostituisci il codice con questo (guarda lo screenshot dove dovrebbe essere) {% if product.sav_quantity == 0 %} <td class="product-sav-quantity text-center" data-product-quantity-value="{{ product.sav_quantity|default('') }}"> <a style="background:red; padding: 5px 5px;" 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> {% else %} <td class="product-sav-quantity text-center" data-product-quantity-value="{{ product.sav_quantity|default('') }}"> {% endif %} <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')) }} </a> </td> {% endif %} Dovrebbe essere così Saluti -
Product catalog, color problem for quantity 0.
Mian Waqas replied to mirkodescalchi's topic in General topics
Hi, Yes new code, 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 %} It should be like this -
Please turn on Debug mode manually go to public_html/config/defines.inc.php on line 29 define('_PS_MODE_DEV_', false); change it to define('_PS_MODE_DEV_', true); this way debug mode will turn on and will show you the error when you load ur backoffice url. again i would ask which version of PS & PHP you are using. Regards
-
Hi, Please correct your question, it have no data of your PS version, PHP version. it lacks what dashboard/tax/shippings you are asking about. Please furnish the exact requirements and post them. Regards
-
What error he sees? There are sandbox/testing modes in both payment modules , turn them on and make few purcahses yourself in sandbox/testing mode (turn on debug mode as well). i am sure you will see the errors in the checkout also both payment modules have error logs as well , post the errors/findings. that way it will be easy to rectify the issue. Regards
-
Catalogo prodotti, problema colore per quantità 0.
Mian Waqas replied to mirkodescalchi's topic in Forum generale
Ciao, Si prega di seguire questo> Modifica: public_html/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/list.html.twig file alla riga 64 trova {% if 'PS_STOCK_MANAGEMENT'|configuration %} e aggiungi questo codice dopo/sotto {% if product.sav_quantity == 0 %} <td class="product-sav-quantity text-center" style="background:red;" 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 %} salvalo, svuota la cache e poi controlla i risultati! Dovrebbe sembrare come questo. (puoi giocarci insieme se hai bisogno di aree defirent in rosso) Saluti