Home › Forums › Free Themes › Kids Education › Team post
- This topic has 10 replies, 3 voices, and was last updated 5 years, 11 months ago by wensolutions.
-
AuthorPosts
-
November 5, 2018 at 10:31 pm #83863Victoria GreenParticipant
How do you hide the “posted in” and tags from the team post.
See link below
https://www.cassycare.com/tp-team-category/teacher/November 5, 2018 at 10:34 pm #83876Victoria GreenParticipantAlso How do u hide “Team Category” from the Page title
November 5, 2018 at 11:50 pm #84011wensolutionsKeymasterHello,
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!!
November 6, 2018 at 4:57 am #84072wensolutionsKeymasterHello,
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!!!
November 7, 2018 at 11:20 pm #84055Victoria GreenParticipantHi 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.
November 8, 2018 at 4:39 pm #84276Victoria GreenParticipantHi I added the css to the child’s theme but it’s not working for me. Is there another way of removing the category?
November 9, 2018 at 11:13 pm #84360wensolutionsKeymasterMake sure that you’ve added the custom CSS is the child theme’s style.css file.
November 10, 2018 at 8:59 am #84365Victoria GreenParticipantI did and it didnt work. See link
November 11, 2018 at 10:29 pm #84469wensolutionsKeymasterHello,
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!!
November 29, 2018 at 5:24 pm #86102frankloParticipantHello, 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…November 29, 2018 at 11:10 pm #86113wensolutionsKeymasterHello @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!!
-
AuthorPosts
- You must be logged in to reply to this topic.