HUBDB: customize dynamic page head?

Hello Champions!

I need to insert a DataLayer script on my product pages. The problem is that each product should have a different script on the head, but I use a single template for all product pages as it is HubDB.

How could I customize the head scripts for each product page created dynamically in HubDB?

URL of our page: https://ead.univali.br/cursos-graduacao/administracao-ead

Thanks!

Heyo!

Wonder what @piersg , @Kevin-C and @rikkilear think about this!

Hi @DanielSanchez,
We’re talking about js scripts, right?
There are two ways that come to my mind. (sorry @piersg for jumping in :wink:)
1. Add a column into your HubDB where you place the URL to the script and call/load it in the template
2. If your scripts have the same nameimg-convention like my-script-1.js, my-script-2.js… you could add another column into the HubDB where you place only the last/changing bit in. On your template you could do something like
<script src=“my-script-{{row.js_number}}.js”></script>
(Sorry for not using the code view - typing from my phone)
Hope this helps
Best, Anton