The MT4 upgrade broke my keywords plugin because the entry page changed from a text box to an input box. So after a little reading and posting on the forums I started digging on my own. I found what I was looking for on Line 999 in "/tmpl/cms/edit_entry.tmpl".
You have to change this line:
<input name="keywords" id="keywords" class="full-width" tabindex="8" value="<$mt:var name="keywords" escape="html"$>" mt:watch-change="1" autocomplete="off" />
to this:
<textarea name="keywords" id="keywords" class="full-width" tabindex="8" mt:watch-change="1" autocomplete="off" /><$mt:var name="keywords" escape="html"$></textarea>
The formatting is just a hair off but I don't feel like tracking down the div or whatever style element is causing it. At least I can put in multiple keywords again to make my other plugins work.

Leave a comment