jameswhickmott
Forum Replies Created
-
Forum: Plugins
In reply to: [ABN Lookup for Gravity Forms] ABN Lookup field options not appearingWhen @ovann86 updated the plugin for Gravity forms 2.5 he added a check whether to display the tab if ABN lookup is enabled for the field.
This is only successful after you have ticked the box, which doesn’t work on a new for if you have never ticked the box.
So I just removed that logic. Plugin still checks where to display the tab for valid field types
Forum: Plugins
In reply to: [ABN Lookup for Gravity Forms] Is this still working?Hey,
not sure where @ovann86 is but try this fix to show the options
https://github.com/jameswhickmott/ABN-Lookup-for-Gravity-Forms/archive/refs/tags/1.8.1.zip
Forum: Plugins
In reply to: [ABN Lookup for Gravity Forms] ABN Lookup field options not appearingHey,
not sure where @ovann86 is but try this fix to show the options
https://github.com/jameswhickmott/ABN-Lookup-for-Gravity-Forms/archive/refs/tags/1.8.1.zip
Forum: Plugins
In reply to: [ABN Lookup for Gravity Forms] ABN lookup field tick option not availableHey,
not sure where @ovann86 is but try this fix to show the options
https://github.com/jameswhickmott/ABN-Lookup-for-Gravity-Forms/archive/refs/tags/1.8.1.zip
Forum: Plugins
In reply to: [Hide Dashboard Notifications] Output errorThe error is with the file:
wp-hide-backed-notices/includes/class-wp-hide-backed-notices .phpIf you are confident with the Plugin editor or editing php files. Go to that file and change line 70 from
if ( defined( ‘WP_HIDE_BACKED_NOTICES _VERSION’ ) ) {
to
if ( defined( ‘WP_HIDE_BACKED_NOTICES_VERSION’ ) ) {
Note the removal of a space between “NOTICES” and “_VERSION”
This will get rid of this error
Forum: Plugins
In reply to: [Hide Dashboard Notifications] Query Monitor ErrorThe error is with the file:
wp-hide-backed-notices/includes/class-wp-hide-backed-notices .phpIf you are confident with the Plugin editor or editing php files. Go to that file and change line 70 from
if ( defined( ‘WP_HIDE_BACKED_NOTICES _VERSION’ ) ) {
to
if ( defined( ‘WP_HIDE_BACKED_NOTICES_VERSION’ ) ) {
Note the removal of a space between “NOTICES” and “_VERSION”
This will get rid of this error