The error "get_woocommerce_term_meta is deprecated since version 3.6!, get_woocommerce_term_meta is deprecated since version 3.6! on line 4329 " can be removed by the disabling Wp_Debug. The WP_Debug can be enabled or disabled from the wp_config file from WordPress. After disabling WP_Debug, you will never get this type of error "get_woocommerce_term_meta is deprecated since version 3.6!". The PHP deprecated problem will be solved.
How to disable WP_Debug?
To disable WP_Debug, you have to follow the steps below.
1. Go to your WordPress (C:\xampp\htdocs\wordpress) folder on localhost or for live server public_html folder.
2. Find the wp-confg.php file. The wp_confip.php file is known as a connection file of WordPress that handles the connection between MYSQL and PHP.
3. Edit the wp-confg.php file using the text editor. You can use any text editor to do this process.
4. Search the code line define( 'WP_DEBUG', true );
5. Replace -
define( 'WP_DEBUG', true );
to
define( 'WP_DEBUG', false );
The WP_DEBUG is enabled by default. To disable WP_DEBUG, you have to change true to false.
Save the file and reload the page. The error "get_woocommerce_term_meta is deprecated since version 3.6! on line 4329 " will be removed from your WordPress dashboard and website.