Jump to content

Mian Waqas

Members
  • Posts

    230
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mian Waqas

  1. A question, had you migrated the data from another store? Also when you enable debug mode, and try to create, or move a acategory , are there any errors showing? Regards
  2. 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)
  3. 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
  4. This seems to be solved (it was not reflecting due to cache) @delconick please can you confirm. Regards
  5. 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
  6. 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?
  7. 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
  8. 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
  9. 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
  10. 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.
  11. 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
  12. 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.
  13. 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
  14. 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
  15. 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
  16. 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
  17. 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
  18. 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
  19. Hi, i am really sorry for the issue you are facing, but Please can you share some screenshots of front office & backoffice category part? your question seems to be very confusy or not related to what you are talking about, that is why there is no reply since 10 days. Regards
  20. If its possible please take a demo of this module https://addons.prestashop.com/en/data-import-export/19091-product-catalog-csv-excel-import.html which is far better then native PS import, and have advanced stock management. Regards
  21. They normally will be in the module config page it self, if they are not avaiable there somehow. as i told you ealier turn on debug mode and make few test checkouts.
  22. 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
  23. 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
  24. Hi, Which PS version you are using? if its not older then 1.7.6 then you need to update your PS version. if orders are coming fine then just ignore it, its not harming your shop or orders. its a know bug in older PS version with some payment modules. Regards
  25. Hi Please turn on debug mode , and then you will see the actual errors.. also your question is incomplete. you need to tell us few important things first. 1. Version of PS 2. Version of PHP 3. is back office accessible?
×
×
  • Create New...