Skip Navigation

[Resolved] Notice on custom fields conditional display settings

This support ticket is created 3 years, 5 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 2 replies, has 2 voices.

Last updated by jasonG-7 3 years, 5 months ago.

Author
Posts
#2153363

Hi,

Need urgent help. Why this hidden link notices are showing into post meeting edit page because of hidden link condition settings. Before there was no error for setting conditional display. If I remove the conditions then the notices are not showing. Why behaving like this?

#2153391

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

The conditional display of custom fields is broken in the current plugin versions: https://toolset.com/errata/conditional-display-of-custom-fields-broken-in-types-3-4-11/

The developers have produced a fix, and plugin updates are due soon, likely early next week.

If you subscribe to the comments on that linked erratum it will be updated as soon as the updates are available.

In the meantime it looks like you have debugging turned on for your production site. You may want to have debugging turned on, where it sends error messages and warnings to a log file, but you surely do not want such messages displayed on screen.

Edit your wp-config.php file and either set WP_DEBUG to false or leave debugging on but set it to write messages to the debug.log file, like so:

If you haven't already, turn on the debug log by editing your wp-config.php file and change the line with WP_DEBUG like so:

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
#2155085

My issue is resolved now. Thank you!