How do I do this?
Recommendation
Consider improving: you may want to obscure this info.
Powered by Slider Revolution 5.4.8 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.
How do I do this?
Recommendation
Consider improving: you may want to obscure this info.
Powered by Slider Revolution 5.4.8 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface.
Hi,
To remove it, you can add the code below in your child theme’s functions.php file located at wp-content/themes/x-child/functions.php
function remove_revslider_meta_tag() {
return '';
}
add_filter( 'revslider_meta_generator', 'remove_revslider_meta_tag' );
You may add it after this line
// Additional Functions
// =============================================================================
For more infomartion kindly refer to the link below
https://www.themepunch.com/faq/remove-meta-tag/
Thanks

It’s good to know that it works for you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.