Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
4 Răspunsuri
14924 Vizualizări

I would like to be able to add some custom HTML to specific web pages.

For example - a form to sign up to a 3rd party event

<form action="//papercraft.list-manage.com/subscribe/post?u=dca1e124858ea9&amp;id=3407b9b1ce" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
 

When I try to add this with the HTML Editor, I get this error.

Malformed XML document:
This page contains the following errors:error on line 25 at column 159: Specification mandate value for attribute novalidate Below is a rendering of the page up to the first error.

Anyone know how to make this work?

Imagine profil
Abandonează

@Tim,
Odoo works in strict XHTML. This means your HTML needs to be reformatted so that it is properly nested according to XML/XHTML standards.

XHTML is also unforgiving in that if you forget to close a tag (for example the form tag above) you'll get this kind of error.

I've run into similar issues before due to attributes that work in html (eg. custom-attribute), but are not written according to XML/XHTML standards (eg. above example could be fixed by changing 'novalidate' to something like 'novalidate="False"'), as @John has pointed out below.

Cel mai bun răspuns

HTML tags must be closed is one thing I see... It also looks like novalidate needs a value like novalidate="False" or "True"...

http://www.w3schools.com/tags/tag_form.asp

Check to see if you copied and pasted your form correctly.

Imagine profil
Abandonează
Cel mai bun răspuns

This really helped me with this problem: http://www.csgnetwork.com/cvthtml2xhtml.html

Imagine profil
Abandonează
Cel mai bun răspuns

Try this:


<form action="//papercraft.list-manage.com/subscribe/post?u=dca1e124858ea9&amp;amp;id=3407b9b1ce" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate="False" />



Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
sept. 24
4224
1
iun. 24
2556
1
mai 22
3710
1
sept. 20
2774
1
iul. 16
6783