• Hiya I was hoping for a little help please..

    I am using wordpress Contango theme and after a short time realised that you cannot post to multiplages. So I removed the pages and added the categories to the navigation menu, which works brilliantly! The only problem is that now at the top of each page (or category related posts) it say “Category Archive: Name of category”. I need to remove this completely.

    I tried looking through the css style sheets to see if I could find the entry but couldnt…

    How do I do this please??

    Thank you

Viewing 1 replies (of 1 total)
  • Thread Starter yandoos

    (@yandoos)

    I found out how to do it for anyone else with same issue.

    find: loop-meta in main css stylesheet and remove following (this will remove horizontal box that stays after text removed)

    background: #fff;
    border: solid 1px #c8c8c8;
    -webkit-box-shadow: 0px 2px 5px rgba(50, 50, 50, 0.15);
    -moz-box-shadow: 0px 2px 5px rgba(50, 50, 50, 0.15);
    box-shadow: 0px 2px 5px rgba(50, 50, 50, 0.15);
    padding-top: 15px;
    padding-bottom: 15px;

    Then go to loop-meta-title and this line of code:

    display:none;

    After this I decided to keep the title but remove the words “Category Archive”. To do this goto loop-meta.php.

    Simply delete the words Category Archive. See here:

    <h1 class=”loop-meta-title”><?php printf( __( Category Archive: ‘%s’, ‘contango’ ), ‘<span>’ . ucwords( strtolower ( single_cat_title( ”, false ) ) ) . ‘</span>’ ); ?></h1>

    Hope this helps

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove “Category Archive:” From top of pages’ is closed to new replies.