OpenGlobal
Forum Replies Created
-
Forum: Plugins
In reply to: [Twitter Widget Pro] "No Tweets Available"… mostlyI can confirm that the proposed fix works fine to fix the special characters (emoji) problem.
Simply open up tlc-transients.php (after making a backup copy of it!) and anywhere that you see a line like:
get_transients(…..);
change this to:
unserialize(base64_decode(get_transient(…..)));
and anywhere you see a line like:
set_transients(…..);
change this to:
set_transient(base64_encode(serialize(…..)));
Obviously, the next time you upgrade the component, this file is likely to be overwritten, so make a backup of your changed file too.
OpenGlobal E-commerce
Forum: Plugins
In reply to: [Form Manager] WCAG validationI’ve just discovered something else:
formelements/formelements.php(line 93):
$arr[] = “<label><input type=\”checkbox\” “.fe_getAttributeString($elementDef[‘attributes’]).” id=\””.htmlspecialchars($k).”\” name=\””.htmlspecialchars($k).”\” “.($vals[$k]?’checked’:”).”/> “.htmlspecialchars($v).”</label>”;
Forum: Plugins
In reply to: [Form Manager] WCAG validation'separator' => '<br />'Forum: Plugins
In reply to: [Form Manager] WCAG validationOK, let me try it this way, you need to change “br” to “br /”.
Forum: Plugins
In reply to: [Form Manager] WCAG validationFor crying out loud! Why does it keep interpreting it as HTML??
‘separator’ => ‘
‘Forum: Plugins
In reply to: [Form Manager] WCAG validationWhoops! Change (3) got interpreted as HTML, it should read:
‘separator’ => ‘
‘ie. self close it.