Find Answers and Get Support › Forums › Cera – Intranet & Community Theme › Popular Features › Member Profile › Members area › Reply To: Members area
- 0 Topics
- 6783 Posts
Hi Jose,
I’m glad to read this issue has been solved.
No worries. These are PHP warnings, not errors. Unlike errors, warnings won’t break your website. They’re just messages aimed at developers to improve their code. 🙂
To hide this message, I suggest that you activate error logging on your website. Please keep WP_DEBUG to true and just paste the following code lines in your wp-config.php file, just before the line that says ‘That’s all, stop editing! Happy blogging.’:
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
More on this in the following topic: https://codex.wordpress.org/Debugging_in_WordPress
You will still be able to consult the warnings and errors triggered by your website but these won’t appear on your pages anymore.
Thank you for bring these new issues to our attention. We’re glad to answer any question related with the setup of our theme.
However, it is very difficult for us to provide the best support possible and to keep track of issues and their resolution if so many questions are asked in the same topic.
Moreover, it’s easier for us to share the resolution for a single issue with other members of our community facing the same problem.
So, could you split your questions into different topics, please? One question = one topic.
By doing this, you will be making a great contribution to this forum, and we thank you very much for that! 🙂
Thank you.