HI @Masac,
Thank you for removing the code. Now to remove those entry data completely, add following code in your child theme’s functions.php.
/**
* Override Parent themes header meta to show nothing
*/
function catcheverest_header_meta() {
return;
}
/**
* Override Parent themes footer meta to show nothing
*/
function catcheverest_footer_meta() {
return;
}
Now, what these functions will do is override the parent themes functions that return meta data to show no data.
Let me know if this works out or not.
About the Wider Content of Homepage Headline and Footer, it is because of Easy Bootstrap Shortcodes Plugin. Try deactivating this plugin. The issue will go away.
Let me know how everything goes.
Regards,
Pratik