PDMowster
Forum Replies Created
-
Forum: Plugins
In reply to: [mowsterGlossary] Doesn't work, doesn't make sense, doesn't have instructionsThere’s a new version updated. Full code changed, adapted to last version of WordPress
Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] version 2.1 | bugs & tipsGreat!
Did you already find the solution for tinyMCE formatselect drop-down conflict?
Bugs solutions
File revision-control.php
# bug_1
__(‘Post Revisions’, ‘revision-control’) missing not allowing to be shown translated.Current
line 83. add_meta_box(‘revisionsdiv’, __(‘Post Revisions’), array(‘Plugin_Revision_Control_UI’, ‘revisions_meta_box’), $type, ‘normal’);fix
line 83. add_meta_box(‘revisionsdiv’, __(‘Post Revisions’, ‘revision-control’), array(‘Plugin_Revision_Control_UI’, ‘revisions_meta_box’), $type, ‘normal’);# bug_2
It will hide checkbox in current revision and autosave, not allowing to be selected by check all functioncurrent
line 616. <input type=’checkbox’ name=’checked[]’ class=’checklist toggle-type’ value=’$revision->ID’ $deletedisabled />
line 617. </span>fix
line 616. “; if (empty($deletedisabled)) echo “<input type=’checkbox’ name=’checked[]’ class=’checklist toggle-type’ value=’$revision->ID’ $deletedisabled />”;
line 617. echo ” </span>File revision-control.js
# bug_3
When clicking delete without any revision selected it was outputing the following message:
The AJAX request has Failed, Please try again;
The unexpected data was: …current
line 31. if ( -1 == success ) {fix
line 31. if ( -1 == success && r.responses[0].supplemental.revisions != undefined) {Forum: Plugins
In reply to: [mowsterGlossary] Doesn't work, doesn't make sense, doesn't have instructionsIt is an old script coded for old WordPress versions, still working with few bugs. Will be updated and optimized soon in a 2.0 version to work in WordPress 3.2
Forum: Plugins
In reply to: [tags.mowster] Bug in pluginIt is working now in version 1.11 for users who have PHP lower than 5.3.0 that not support anonymous functions
https://pt2.php.net/functions.anonymousForum: Plugins
In reply to: [More Fields] [Plugin: More Fields] Caption bugStill not working in 2.0.2 ??
<b>bold</b>notbold
in the caption, simply gets the following< ;b> ;bold< ;/b> ;notbold
(without spaces, just put it because the system is converting the symbols in html)I still have it working with 2.0β1. Simple have some div code in the caption which I inject some HTML with jquery.