Fixing Module Configure Button Not Working on Product Page
If you cannot click the Configure button for a module inside the Modules section of a PrestaShop product page β and instead the page reloads β this is not an issue with the module, but a known PrestaShop bug.
It usually happens because there are invalid characters or unexpected formatting in the short description or description fields of the product.
This can be due to:
- Copying text from Word, Google Docs, PDFs, or websites (which adds hidden characters)
- The description not being properly wrapped in HTML tags
π Recommended Method β Wrap the Description in HTMLβ
Recently, weβve found that the error can often be solved by ensuring the description is wrapped inside valid HTML tags, such as <p>
.
Step-by-Stepβ
- Go to the Back Office and edit the product with the issue.
- Locate the Description or Short Description field.
- Check if your content is wrapped in HTML tags.
- If not, wrap it manually or via the editor:
Example before:
This is my product description.
Example after:
<p>This is my product description.</p>
-
In the PrestaShop editor, you can:
- Select the text
- Click the Paragraph button
- Or switch to code view and add the tags manually
-
Save the product.
-
Clear the cache: Back Office β Advanced Parameters > Performance β Clear Cache
-
Reload the product page and check if the Configure button works.
π Old Procedure β Remove and Clean the Text (Always Works)β
If the HTML-wrapping fix doesnβt solve the problem, you can use the older method, which is guaranteed to work.
Temporary Workaroundβ
- Copy the full text from the problematic field (short or full description).
- Remove the text completely.
- Save the product.
- Reload the product page.
- Paste the text back into the field.
- Save the product again.
Recommended Fixes if still doesn't workβ
Sometimes there may be hidden characters inside the text caused by a copy paste or even text-writters like Word can add them. If that's your case, we recommend:
- Copy the text into a plain text editor (e.g., Notepad) to remove all hidden formatting.
- Paste it back into PrestaShop.
- Save the product.
This ensures there are no hidden or invalid characters that can cause JavaScript errors.
Why Fixing the error Mattersβ
When a JavaScript error happens:
- Product Edit page won't load all it's functionalities correctly
- Modules canβt load their configuration
- Buttons may not work
- The page may reload unexpectedly when saving
By fixing the text formatting and resolving the errors your product pages will work as expected.
Need help? Contact us and weβll guide you step-by-step.