Title

This topic contains 10 replies, has 3 voices, and was last updated by  Kor 6 years, 3 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #415447

    don quixote
    Expired Member
    Post count: 667

    Why does the word Category display before Latest News-see here?
    1. How can I delete the word Category?
    Thanks

    #415487

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    #415527

    Kor
    Moderator
    Post count: 16516

    Hi Don,

    Insert this function into Code snippet plugin to remove it.

    
    
    function prefix_category_title( $title ) {
        if ( is_category() ) {
            $title = single_cat_title( '', false );
        }
        return $title;
    }
    add_filter( 'get_the_archive_title', 'prefix_category_title' );
    #415598

    don quixote
    Expired Member
    Post count: 667
    This reply has been marked as private.
    #415601

    Kor
    Moderator
    Post count: 16516

    Hi Don,

    This code snippet removes the “Category:” from this page http://www.puertoricotravelguide2018.com/category/the-caribbean-1/puerto-rico-1/latest-news/ . Isn’t this what you’re looking for?

    Thanks!

    #415621

    don quixote
    Expired Member
    Post count: 667
    This reply has been marked as private.
    #415628

    Kor
    Moderator
    Post count: 16516

    Hi Don,

    Oh. For that one, just use the custom CSS code below.

    
    
    .sd-homepage #geodir_advanced_search-1 {
        display:none!important;
    }
    #415645

    don quixote
    Expired Member
    Post count: 667
    This reply has been marked as private.
    #415659

    Kor
    Moderator
    Post count: 16516

    Hi Don,

    Fixed it for you. Let us know if you need anything further.

    Thanks!

    #415680

    don quixote
    Expired Member
    Post count: 667
    This reply has been marked as private.
    #415784

    Kor
    Moderator
    Post count: 16516

    Hi Don,

    You did not copy and paste the custom CSS code correctly. 🙂

    Thanks!

Viewing 11 posts - 1 through 11 (of 11 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket