Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - aidinmc

Pages: [1]
1
PHP / Re: Error with PHP
« on: January 12, 2019, 09:35:19 PM »
Those aren't error, those are warning, you can hide warnings by this code:
Code: [Select]
error_reporting(E_ERROR | E_PARSE);also you can turn off wordpress debugger in wp-config.php , replace this code
Code: [Select]
define( 'WP_DEBUG', true );with
Code: [Select]
define( 'WP_DEBUG', false );

Pages: [1]