If in wordpress image title is specified and contains the "on" word the image will not render on the mobile site view. I am guessing this is caused when all the javascript "onEvent" events are stripped.
i have fixed this problem by adding a space after = in the following code:
$remove_attributes = array( "on[^= ]*", );
in the wordpress-mobile-pack/plugins/wpmp_transcoder/wpmp_transcoder.php file.
Sign in or register to reply.
Why register?
Developer's guide
Posted by usbzoso 1 year ago
i have fixed this problem by adding a space after = in the following code:
$remove_attributes = array(
"on[^= ]*",
);
in the wordpress-mobile-pack/plugins/wpmp_transcoder/wpmp_transcoder.php file.