Expand my Community achievements bar.

Join Adobe Journey Optimizer product experts for a live Ask Me Anything on October 15th at 8 AM PT about Expanding Your Mobile Reach with RCS & WhatsApp in AJO!

Content Fragment Moves from <head> to <body> After Saving in AJO Content Template

Avatar

Level 9

I’m trying to keep the entire <head> section within a Content Fragment, so I created a dedicated CF and included it in the content template. However, after saving and reopening, the CF is automatically moved from the <head> tag to the <body> tag.

Before save,

<!DOCTYPE html>
<html data-qb-installed="true">
   <head>
      <meta charset="utf-8" />
      {{fragment id='ajo:ce84ac85-7f5b-4385-84cf-f3c850da8140' mode='inline'}}
      <header></header>
      <div>test</div>
   </body>
</html>

 When I reopen the same,

<!DOCTYPE html>
<html data-qb-installed="true">
   <head>
      <meta charset="utf-8" />
   </head>
   <body class="is-html-mode" contenteditable="true">
      {{fragment id='ajo:ce84ac85-7f5b-4385-84cf-f3c850da8140' mode='inline'}}
      <header></header>
      <div>test</div>
   </body>
</html>

 

The inserted Content Fragment is being moved from the <head> tag to the <body> tag after saving. Is it not possible to insert a Content Fragment within the <head> section

 

0 Replies