Thanks for providing more details.
I’m a bit puzzled now. If I understand well, you added desired HTML meta tag to the site-wide HEAD section and that is displayed on the frontend?
If above is correct, on your homepage edit screenshot HEAD section is empty. Are you expecting to see something on homepage frontend?
Please check my demo video https://drive.google.com/file/d/1kqRGKwo1SBnelD7Bte5cYRVo0HQa2s5c/view?usp=share_link
I hope you can enable WP debugging as per https://www.ads-software.com/documentation/article/debugging-in-wordpress/ or simply add the following to your wp-config.php
:
// Enable WP_DEBUG mode
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
// 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 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( 'SCRIPT_DEBUG', true );
}
If you did similar to my video but the code added to the homepage edit screen does not appear on frontend:
- Make sure you have enabled the “page” post type on HFC global plugin settings page.
- Alternatively, if above does not help, try with disabled WP Rocket.
Please let me know if anything of the above was helpful.
And don’t forget to remove WP Debug settings from wp-config.php