0

I'm trying to import an impex with html and it appears in the webpage without the class. For example this h1 class (content-page__title) doesn't appear.

UPDATE CMSParagraphComponent; $contentCV[unique = true]; uid[unique = true]; content[lang = $lang]

; ; CMSParagraph-FrequentQuestionsPage       ; "<h1 class='content-page__title'>Preguntas frecuentes</h1>"
Tom
  • 11
  • 4

1 Answers1

0

You are using incorrect pair of quotes....

Use like below,

UPDATE CMSParagraphComponent; $contentCV[unique = true]; uid[unique = true]; content[lang = $lang]

; ; CMSParagraph-FrequentQuestionsPage       ; "<h1 class=""content-page__title"">Preguntas frecuentes</h1>"

Also you can use html encoding like &quot ;

refer below link,

Escape_Double_Quotes