Thread Starter
mssbee
(@mssbee)
Please forgive my typo – the above post should read the directory tab in not showing in fields with WordPress v3.6
I’m having the same problem. Really need this to work so I can hide fields.
Yes this is not working for me in 3.6 either. Looks like the jQuery UI tabs code uses the old 1.8.x ‘add’ method which is no longer with jQuery UI 1.10.x. WordPress 3.6 updated jQuery UI to 1.10.3.
FIX:
/wp-content/plugins/gravity-forms-addons/edit-form.php
line 317
$( "#field_settings" ).tabs("add", "#gform_tab_3", "Directory");
Change to:
$( "<li><a href='#gform_tab_3'>Directory</a></li>" ).appendTo( "#field_settings .ui-tabs-nav" );
$( "#field_settings" ).tabs( "refresh" );
Deprecation Notice
http://jqueryui.com/upgrade-guide/1.9/#deprecated-add-and-remove-methods-and-events-use-refresh-method
thanks, this fix worked for me too.
Not Work in Version 3.6.1
Thanks! Worked great! Hopefully we get an update for this plugin soon.
This is fixed in 3.4.2. Thanks for the hotfix on that, @eastwoodarts.
Great to hear you haven’t abandoned this plugin, Zack!
Don’t worry, I’m not abandoning it. Planning the next iteration 🙂