Home Forums Free Themes Kids Education Team post

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #83863
    Victoria Green
    Participant

    How do you hide the “posted in” and tags from the team post.
    See link below
    https://www.cassycare.com/tp-team-category/teacher/

    #83876
    Victoria Green
    Participant

    Also How do u hide “Team Category” from the Page title

    #84011
    wensolutions
    Keymaster

    Hello,

    Please add below given CSS in Additional CSS to resolve your issue.

    .course-header-contents .categories, .course-header-contents .tags{
        display: none;
    }
    
    .page-title .entry-title {
        display: none;
    }

    Thank you.

    Regards!!

    #84072
    wensolutions
    Keymaster

    Hello,

    We would like to apologize for the confusion.

    To remove the “category” only you have to go through the child theme.

    To know how to create and activate the child theme please refer to below given link:

    https://wptravel.io/how-to-create-a-child-theme/

    After activating the child theme add below given code in your child theme functions.php file.

    function kids_education_child_remove_cat_titles($title) {
    
        if ( is_archive() ) {
    
            $title = single_cat_title( '', false );
    
        } elseif ( is_tag() ) {
    
            $title = single_tag_title( '', false );
    
        } elseif ( is_author() ) {
    
            $title = '<span class="vcard">' . get_the_author() . '</span>' ;
    
        }
    
        return $title;
    
    }

    add_filter( ‘get_the_archive_title’, ‘kids_education_child_remove_cat_titles’ );

    Hope this helps.

    Regards!!!

    #84055
    Victoria Green
    Participant

    Hi I added the css but it removed the Team Category tile I just wanted to hide the words ” team category:” For Example the following page I just want it to say teachers.

    https://www.cassycare.com/tp-team-category/teachers/

    #84276
    Victoria Green
    Participant

    Hi I added the css to the child’s theme but it’s not working for me. Is there another way of removing the category?

    #84360
    wensolutions
    Keymaster

    Make sure that you’ve added the custom CSS is the child theme’s style.css file.

    #84365
    Victoria Green
    Participant

    I did and it didnt work. See link

    https://ibb.co/m8p4cq

    #84469
    wensolutions
    Keymaster

    Hello,

    We would like to apologize for the confusion.

    Please remove the above provided custom code from the theme’s style.css file and place it in your child theme functions.php file.

    It will remove the “team category” and only display the title.

    Hope this helps.

    Thank you.

    Regards!!

    #86102
    franklo
    Participant

    Hello, I have a problem with the menu, on the mobile, it does not unfold, for what reason it may be …
    My site is http://www.conejotito.com
    thanks…

    #86113
    wensolutions
    Keymaster

    Hello @franklo,

    When we tried to inspect your site to resolve the issue, we could not do. So can you please fix the site and let us know so that we can provide the fix?

    Thank you.

    Regards!!

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.