简体   繁体   中英

How to add a custom module to coded template in Hubspot?

I'm trying to add a custom module in a coded template in Hubspot, but cannot find any documentation or answers how to do that. Is that even possible?

Custom module: An example of a custom module can be any HTML component, I will add a simple text as example, module is called "Hello world":

<p>Hello world</p>

Coded template: For example, let's say I have a coded template like this:

<html>
<head>
  <title>{{ content.html_title }}</title>
    {{ standard_header_includes }}
</head>
<body>
    <!-- I want to add custom module here, but how? -->
    {{ standard_footer_includes }}
</body>
</html>

Is there a way to add this custom module to a coded template?

Custom modules can be embed using HubL statements.

For example, to display custom module with the title "Hello World" you can use such code:

<body>
    <!-- Custom module -->
    {% custom_widget "any_unique_id" widget_name='Hello World' %}

    {{ standard_footer_includes }}
</body>

Check HubL Reference for more information - https://designers.hubspot.com/docs/hubl/hubl-supported-modules

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM