I'm facing a strange thing here. I'm working on an OpenCart, register form (index.php?route=checkout/register
).
I have the form and 2 fields like this:
<span class="required">*</span> <?php echo $entry_email; ?><br />
<input type="text" name="email" value="" class="large-field" /><br />
<br />
<span class="required">*</span> <?php echo $entry_telephone; ?><br />
<input type="text" name="telephone" value="" class="large-field" />
Now: The browser interprets these 2 fields as:
<input type="email" name="email" value="" class="large-field">
and
<input type="tel" name="telephone" value="" class="large-field">
BUT if I change the email field attribute-order like so:
<input type="text" value="" class="large-field" name="email" />
then the fields are truly text types, they don't get transformed.
Attention: I only modify for the first one (email) and after that the email and the telephone are parsed correctly.
I am seeing this unexpected behavior on Firefox, Chrome and Opera,
however, if I copy the inputs in a plain html and view it, they are ok..
Any idea on what is happening, and of course why?
EDIT:
The full HTML that is sent to the browser (retrieved with web-sniffer.net) is in this pastebin: http://pastebin.com/bCXab6Kb
That means that the <input type="text"
fields are already changed when php sends the HTML to the browser.
So, what (why/how) converts the <input type="text">
to type email
/tel
(seemingly based on name attribute) and why does this fail when the input-field's attribute order is changed?
OpenCart up to current stable version 1.5.6 (and version 1.5.6.1 as it currently is,) does not use any HTML5 (input fields etc) by default (or in it's default theme).
This is in-line with: When will opencart start to use html5? (apr. '12): "People are still complaining about IE6 support. When people stop whining about that, then we can start focusing on HTML5 transitioning".
For example, the file checkout/register.tpl (from v 1.5.6) (that you modified) contains by default:
However, in the current master-branch (dec. '13) I am seeing some inconsistent use of HTML5 input-fields in some pages (like:
account/register.tpl
andaccount/edit.tpl
):Note how the fax field has
type="text"
and the absence of tables (in favor of divs) and finally the different classnames.That brings us to the most interesting part of your question: what (why/how) converts the
<input type="text"
to typeemail
/tel
(seemingly based on name attribute) and why does this fail when the input-field's attribute order is changed?.As we can see in the HTML code sent by PHP to the browser (http://pastebin.com/bCXab6Kb), the input-field's type attributes are already changed. Thus it is not the browser or a piece of javascript that changes this.
So, assuming PHP doesn't change the code by itself, there must be something in the script(s) that PHP runs to change the code as stored in files on the harddisk before sending it to the browser: OpenCart and/or (one of) it's 'themes', 'modules', 'extensions' etc.
And since some kind of html-parser probably wouldn't mess up such a simple task, the most likely candidate is some kind of script that does a basic search and replace.
There happen to be 2 (highly related) scripts, common to OpenCart, that exactly fit this bill..
OpenCart's 'modification system'
Should you have accidentally downloaded/installed the 'latest' (development) master-branch (or are a contributer), then you'll find some files like system/engine/modification.php (and some related files and database-table) that can search for and prepend/append/replace lines of code in php/tpl files (hard-coded limitation) according to rules specified in an xml file (system/modification.xml) before the targeted php/tpl file is parsed and without modifying the original file(s).
This rather self-explanatory xml-file basically contains 'operations' per file to modify on the fly, for example:
where
$action->getFile()
is replaced with$this->registry->get('modification')->getFile($action->getFile())
before filesystem/engine/front.php
is parsed!"vQmod™" (aka Virtual Quick Mod)
vQmod is a separately developed package and is basically a polished version of OpenCart's modification system (above), from which it originated. It is commonly used by 'add-ons' to modify production-releases of OpenCart and installed (as it is not included in OpenCart by default) in folder
vqmod
(located in the root of OpenCart). Inside this folder you'll find a foldervqcache
that holds the cached modified files and a folderxml
that holds thexml search/replace files
.These xml files have a slightly different syntax (most notably the
position
attribute) compared to OpenCart's modification system (above):Note: above example is from the 'embermonkey responsive theme' and is an excellent example of the behavior of what you are experiencing: it replaces the input attributes.
The purpose of these modification-scripts is to:
This makes it possible to "virtually alter any php or tpl file in OpenCart (except the main index.php)" so that it will become easier and more reliable to update OpenCart's core files and add/remove templates etc.
Finally, the valid email address ([email protected]) that fails to validate when the input's type is set to
email
instead oftext
...This is a rather common problem with (broken/outdated/partially-installed) 'responsive'/'mobile' themes etc. (that usually also affects telephone fields) 1, 2.
The problem is not that the browser rejects the valid email-addres (when the input field's type is set to
email
instead oftext
); instead, it's OpenCart's JSON validator that doesn't get input typesemail
(andtel
, etc) by default (when you or the theme left this unpatched):Thus, obviously, the solution is to add these input-types to the AJAX-call:
In conclusion, using what is explained above:
<input type="email"
(for example) and investigate results with file-type xml first.PS: now you know of vQmod, you'd better use it (instead of modifying core-files) since "performance suprisingly does not appear to be a factor at all", giving you the benefit of a more reliable upgrade-path in the future!