Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #698846

    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!

    #698875

    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:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Vinay

    • This reply was modified 8 years, 1 month ago by Vinay.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.