Hi
I am getting a critical error with my view all of a sudden, it was working previously.
See this page:
hidden link
Any ideas why this is? seems to be because of my filter, removing this fixes the issue but I really want to use the filter.
Thanks.
Hi there,
Would you please use UNSIGNED instead of Datetime in the filter as the dates in Toolset are stored as a UNIX timestamp?
See if it fixes the issue. If not, please enable WordPress debug mode to see what is the underlying error:
Would you please access your website files and edit the "wp-config.php" file on the root folder of your WordPress installation and add the code below into the file:
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
Please add the code above the line below:
/* That's all, stop editing! Happy blogging. */
For more information:
https://toolset.com/documentation/programmer-reference/debugging-sites-built-with-toolset/
Thanks.