We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Oct 13, 2022 1:59 PM
Solved! Go to Solution.
Oct 13, 2022 4:48 PM
Hi @RHirliman,
<!-- custom widget definition not found (portalId: null, path: null, moduleId: null) -->
means that the path to the module/partial is wrong and couldn't be loaded.
First thing I'd do is check the listing layout
If you have something like this in your listing template:
{% extends '../../templates/layout/layout.html' %}
...
{% block body %}
...
{% endblock body %}
{% block footer %}
{% global_partial path="../../templates/globals/lp-footer.html" name="Footer" %}
{% endblock footer %}
awesome!
The only thing you have to do is: right-click on the footer template and select "copy path" - not public path/URL and place it into the path.
It's the first thing I check if I get such an error message. If it works - nice! Job done 😃
If you don't have it - check if other templates(where it's working) containing an
{% block footer %}
...
{% endblock footer %}
element. If they have it - Awesome! You know why it's not working. Copy the code, place it in your listing template, change the path like described above, try it out, save it - done!
Hope that helps
best
Anton
Oct 13, 2022 4:48 PM
Hi @RHirliman,
<!-- custom widget definition not found (portalId: null, path: null, moduleId: null) -->
means that the path to the module/partial is wrong and couldn't be loaded.
First thing I'd do is check the listing layout
If you have something like this in your listing template:
{% extends '../../templates/layout/layout.html' %}
...
{% block body %}
...
{% endblock body %}
{% block footer %}
{% global_partial path="../../templates/globals/lp-footer.html" name="Footer" %}
{% endblock footer %}
awesome!
The only thing you have to do is: right-click on the footer template and select "copy path" - not public path/URL and place it into the path.
It's the first thing I check if I get such an error message. If it works - nice! Job done 😃
If you don't have it - check if other templates(where it's working) containing an
{% block footer %}
...
{% endblock footer %}
element. If they have it - Awesome! You know why it's not working. Copy the code, place it in your listing template, change the path like described above, try it out, save it - done!
Hope that helps
best
Anton
Oct 13, 2022 3:44 PM
Hi, @RHirliman 👋 Thanks for reaching out. @Anton @Indra, do you have any tips or troubleshooting steps you can share with @RHirliman?
Thank you! — Jaycee