0

I’m building a website using a custom Odoo module. I created a hero section on the homepage, and I can see it correctly at localhost:8070.

The issue is that after making several changes and adding new sections in the same home.xml template, the updates are not showing up on the website at the same URL.

Could anyone please help me figure out why the changes are not being reflected?

Thanks in advance! 🙏

5
  • Lets understand what is happening. You are making a http request from client to server. The server sends back a response with your updates in the body. The response gets serialized at the server and deserialized in the client. If you are making changes at the server then either the changes are not getting put into the response or the client is not deserializing the body properly. Commented Sep 7 at 10:26
  • please insert your code (home.xml, python...) in your post... and the odoo server log ro provide the error traceback Commented Sep 7 at 19:43
  • you can go to Application, search your module and click on update-button (or in your manifest.py: increment your version +1 and re-launch odoo) Commented Sep 8 at 11:06
  • ... try it too: Go to Settings and, at the bottom of this page, click on Activate Developper Mode... then go to back-office page and click on Bug-icon > Regenerate assets. Commented Sep 8 at 11:08
  • Thank you so much, all. Finally, Activation developer mode works for it. Commented Sep 10 at 17:22

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.