Jump to content

Mr Rick

Members
  • Posts

    190
  • Joined

  • Last visited

  • Days Won

    2

Mr Rick last won the day on March 7 2024

Mr Rick had the most liked content!

4 Followers

About Mr Rick

  • Birthday 03/12/1983

Profile Information

  • Location
    Pakistan
  • Interests
    Web developer
  • Activity
    Web development agency

Recent Profile Visitors

2,938 profile views

Mr Rick's Achievements

  1. Hi, Steps to Reorder Your Combinations: Go to Attributes & Features: In your PrestaShop admin panel, navigate to Catalog > Attributes & Features. Order Your Attribute Groups: First, ensure your attribute groups are in a logical order (e.g., "Size," "Color," "Material"). You can typically drag and drop these groups to reorder them if needed. This determines the overall hierarchy of your combination display. Order Attributes within Each Group: Click on each attribute group (e.g., "Size"). Inside the attribute group, you'll see a list of individual attributes (e.g., "Junior," "Senior" for size, or "Red," "Blue," "Green" for color). Crucially, use the drag-and-drop functionality (the "cross" icon next to each attribute) to reorder these attributes as desired.
  2. Hi, It can be simply deactivated or edited from "Customer Reassurance" module, not editing any page!
  3. Hi, Best for: Simple, standardized data that you might want to use for filtering in layered navigation. How to do it: Navigate to Features: In your PrestaShop Back Office, go to Catalog > Attributes & Features. Select the "Features" tab. Create a New Feature: Click the + Add new feature button. Let's say you want to add a "Special Certification" field. Name: Enter Special Certification. Save the feature. Add Values for the Feature: Now you need to add possible values for this feature. Click on the new feature you just created (Special Certification). Click + Add new feature value. Value: Enter a possible value, like ECOCERT Certified. Save it. You can add multiple values (e.g., Fair Trade Certified, ISO 9001). Assign the Feature to a Product: Go to Catalog > Products and edit the product you want to modify. On the product edit page, go to the "Features" tab (in older PrestaShop versions, it might be on the main "Basic settings" page). You will see your newly created feature (Special Certification). You can either select a pre-defined value (like ECOCERT Certified) from the dropdown or enter a custom value directly into the text box. Save the product. The new information will now be visible on your product page, usually under a "Data Sheet" tab.
  4. Hi, You can edit the file "\classes\PaymentModule.php", where you will find function "validateOrder". See code around line 625, where all variables are declared and add your var.... However the best way to do this is by making override of Payment class and edit the code. Best of luck 😊
  5. Hi, You can use marketplace modules as many are available on https://addons.prestashop.com/en/
  6. Hi, Are you using any third-party modules related to product? sometimes it breaks the product edit section.
  7. Hi, The password is stored in the DB table "prefix_configuration" under name "PS_MAIL_PASSWD" Good luck! 😊
  8. Hi, The nginx server has this kind of issue, but its easy to fix. See below article. https://stackoverflow.com/questions/23070441/prestashop-nginx-rewrite-rules?rq=4
  9. Hi, I may be late to answer this, it looks like you have an nginx server? In this case you may need specific settings for these URLs.
  10. Hi, Do you mean the filter by menu? or the standard navigation of categories on the left?
  11. Hi, Why not use Gift on cart modules, it has rules and easy to make the modifications.
  12. Hello Alex, Which module are you talking about? also do tell us the PrestaShop version.
  13. Hi, Can you tell us the PrestaShop version and if you are using any other theme then the default Prestashop one?
  14. Hello, You can edit the file in your theme, for prices. I can only give example of the default theme like go to /themes/YOUR-THEME/templates/catalog/_partials/product-prices.tpl Find the discount line and round it using below function. Tools::ps_round($product.discount_percentage_absolute, 0) Best of luck 😊
×
×
  • Create New...