http://bayu.mkb-reklame.nl/category/travelreport-and-guestbook/
I am working on this new site and my customer wants to delete the text: Archive for category on the blog page in the header.
I have tried numerous css codes but nothing works.
Please advise me how to do this.
Thanks!
Hey vonweiler,
Please try adding this at the very end of your themes / child themes functions.php file:
// Empty String
function emptyString(){
?>
<script>
jQuery(document).ready(function() {
jQuery('.main-title.entry-title:contains("Archive for category:")').each(function(){
jQuery(this).html(jQuery(this).html().split("Archive for category:").join(""));
});
});
</script>
<?php
}
add_action('wp_footer', 'emptyString');
If the above don’t work for you Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
Best regards,
Vinay