Home › Forums › Pro Themes › Magzimum Pro › Hiding Post-Meta
Tagged: post-meta
- This topic has 15 replies, 3 voices, and was last updated 7 years, 1 month ago by
iamshivamyadav.
-
AuthorPosts
-
November 3, 2016 at 9:19 am #22453
Abdel-Rahman Hussein
ParticipantHow does one hide post-meta as well as tags on the posts? Additionally, how does one remove the word “Category” before the title of internal pages? Thank you
November 4, 2016 at 12:12 am #22498wensolutions
KeymasterHello,
You can remove the display of post meta from the posts in blog listing page by going to your Admin Dashboard > Appearance > Customize > Themes Options > Blog and unchecking the “Show Post Meta” Option.
To remove the “Category” word from the Category Archives, you will first need to create a Child Theme. For Reference on creating child theme, please see the link here https://codex.wordpress.org/Child_Themes
You can also use child theme generator plugin for the task.
Once you have successfully created and activated the child theme go to your child theme’s functions.php file and paste in the following code :
/** * Filter to remove "Category" word from the Category Archive. */ add_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( '', false ); } return $title; });
Hope this Helps,
Best Regards !!
November 4, 2016 at 7:14 am #22532Abdel-Rahman Hussein
ParticipantThat’s the issue, I have unchecked Show Post Meta from the Blog Theme Options and it doesn’t remove them.
November 4, 2016 at 7:16 am #22534wensolutions
KeymasterHello @Abdel-Rahman Hussein,
Please provide to us the site URL of the page you are trying to hide post meta so that we can inspect the issue and provide a specific fix for the issue.
Best Regards !!
November 4, 2016 at 7:53 am #22536Abdel-Rahman Hussein
ParticipantNovember 4, 2016 at 1:31 pm #22556wensolutions
KeymasterAlso are you using the latest version of the theme ?
November 4, 2016 at 4:29 pm #22560Abdel-Rahman Hussein
ParticipantVersion 1.5
November 5, 2016 at 10:08 am #22590wensolutions
KeymasterTheme post meta option is working fine with the latest version. Can you please mention where you are trying to disable the post meta and its not happening?
November 5, 2016 at 11:34 am #22594Abdel-Rahman Hussein
ParticipantIt’s not happening on all the posts, for eg. http://threefour.dandin.me/ritza-our-kind-of-super-band/ or any other post.
November 6, 2016 at 12:00 am #22630wensolutions
KeymasterHello,
We apologize for the confusion, the theme customizer option to disable the post meta is designed to work in the blog listing page only as mentioned in the text under the theme option.
To hide the post meta also in the single post page please paste in the following Custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Custom CSS :
.single .entry-meta { display: none; }
Hope this Helps,
Best Regards !!
November 6, 2016 at 5:19 am #22656Abdel-Rahman Hussein
ParticipantWorked, thanks. And how can you hide/remove the tags at the bottom of each post?
November 6, 2016 at 5:50 am #22657wensolutions
KeymasterHello,
To remove the tags display from the bottom of the post, please add the following Custom CSS in your Custom CSS field :
.single span.tags-links { display: none!important; }
Hope this Helps,
Best Regards !!
November 6, 2016 at 5:55 am #22658Abdel-Rahman Hussein
ParticipantPerfect. Thank you for all your help, much appreciated.
December 20, 2016 at 12:12 am #26042iamshivamyadav
ParticipantDear Support tam,
firstly i would like thanks to all team for create such a nice theme like magazine plus. I’m using on my website http://indiandiary.in/. but i have a concern because custom CSS option is not available, so how to hide meta tags. Thanks
Regards,
Shivam YadavDecember 20, 2016 at 1:04 am #26049wensolutions
KeymasterHello @iamshivamyadav,
With the latest version of WordPress ( version : 4.7 ) Additional Custom CSS codes for the website can directly be added from the Admin Dashboard > Appearance > Customize > Additional CSS.
Please explain further where you want to hide the post meta from so that we could provide you with Custom CSS code to help with your requirements.
Best regards !!
-
AuthorPosts
- You must be logged in to reply to this topic.