milanno
Forum Replies Created
-
*Update
We have just fixed capabilities functionality in PRO version of plugin and contributors can now administer all tickets.
If someone is interested to get this fix for a small donation 🙂 please ask for it via our contact form.
Thanks,
Milan
Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsHere is the quick way around for the text field saving/update.
Text fields can’t be saved if you use spaced Field Name (for example: ‘my field name’), however fields are correctly saved if you use Field Name without space (for example: ‘myfieldname’).
I hope this was helpful and that this bug will be fixed in the new plugin version.
Cheers!
I have found at least a temporary solution by removing ‘attribute_escape()’ from the ‘update_pictures()‘ function located in the ‘wp-content\plugins\nextgen-gallery\admin\manage.php’ .
I have used raw $_POST array instead.
So basically this 3 lines:
$nggdescription = attribute_escape( $_POST['description'] ); $nggalttext = attribute_escape( $_POST['alttext'] ); $nggexclude = attribute_escape( $_POST['exclude'] );Should look like this after removing ‘attribute_escape’:
$nggdescription = $_POST['description']; $nggalttext = $_POST['alttext']; $nggexclude = $_POST['exclude'];Let me know if this solution works for you.