- This topic has 31 replies, 11 voices, and was last updated 7 years, 6 months ago by Sakin.
-
AuthorPosts
-
October 4, 2012 at 5:57 pm #1043ali66rezaMember
Looking for a way to Remove Date and Author Name
October 4, 2012 at 10:14 pm #1050jadewbjMemberI would like to know this also.
October 4, 2012 at 10:20 pm #1051jadewbjMemberIn addition I would like to know how to remove the “Categories:” at the bottom of the posts.
October 4, 2012 at 10:27 pm #1052jadewbjMemberNot sure if this is the “right way” to do it but this worked for me.
Go to the theme editor and edit:
simplecatch_functions.php
Search for this code:
ul class=”post-by”Then comment out before that UL and end at the /ul
October 5, 2012 at 11:24 am #1062SakinKeymasterHello, to remove the data you need to build child theme and do the customization.
But you also have a simple process of hiding it through css. You can add the following css in your “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard:
/*To Remove the Categories at the bottom of the posts.*/
.single .tags {
display: none;
}
/* to Remove Date and Author Name */
#main #content ul.post-by {
display: none;
}
Regards,
SakinOctober 9, 2012 at 9:22 am #1101ali66rezaMemberwhat do you mean by that, i dont know how?!!
is any easy way to do it, any code to copy?October 9, 2012 at 9:49 pm #1129SakinKeymasterYes you just need to copy the css as above and paste in the the “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard.
October 14, 2012 at 4:11 am #1208LadyhawkMemberSakin,
I had this same question and copied the code you posted above into the custom CSS box and there was no change in the post author, date or category. Is there something that I missed?October 15, 2012 at 7:42 am #1216GunHoundMemberAll,
I tried Sakin’s code, and it did not work for me either. Here is how I resolved it:
I browsed to my page just as a user would and went to the Author info on a post. I right clicked the info to “Inspect element” using the Google Chrome browser. Firefox extension, “FireBug” enables the same function.
There I could see that the parent “class” that contains all of the info is called “entry-meta”. That makes sense because it contains the metadata of the post/entry.
Using Sakin’s instruction’s for adding Custom CSS to the theme, I inserted the following code:
.entry-meta {
display:none;
}
October 15, 2012 at 10:27 am #1218SakinKeymaster@GunHoung: I have talking about removing it in Simple Catch Theme: http://catchthemes.com/demo/simplecatch/
If you inspect with the firebug, you will see class “post-by”
But if you are talking about Simple Catch Pro Theme http://catchthemes.com/demo/simplecatch-pro/ then yes you are right.
But this forum title if from Simple Catch Theme.
I am bit confused in which theme you are talking about.
Regards,
SakinOctober 19, 2012 at 6:59 pm #1276ikampylaMemberHi all!!
Is there a way to keep date and remove author and comments?By admin | 16 October, 2012 | No Comments
October 19, 2012 at 11:08 pm #1281SakinKeymaster@ikampyla: You can add following css in the “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard.
#main #content ul.post-by li.no-padding-left,
#main #content ul.post-by li.last, {
display: none;
}December 1, 2012 at 12:54 am #2173dimantonakMemberI have a little more complicated problem… I want to hide only the comments section. I deleted the line 30 from the content.php (<?php comments_popup_link( __( ‘No Comments’, ‘simplecatch’ ), __( ‘1 Comment’, ‘simplecatch’ ), __( ‘% Comments’, ‘simplecatch’ ) ); ?>). So in that case the comments section is not presented at the category list but it continues to be present at the category item (post). I cannot find any other popup_link except from the image.php.
Please advice
Ragards,
March 30, 2013 at 7:14 pm #6183AneeshMemberHai Sakin,
I want to remove date, Category & Author name from my post.
I am using catch everest theme. my website is http://daffodilsgroup.net/lifespace/?p=30
Please help.
March 31, 2013 at 9:25 am #6208SakinKeymaster@Aneesh: Just add the following CSS in “Custom CSS” box in Theme Options panel.
.single .entry-meta { display: none; }
March 31, 2013 at 9:28 am #6209SakinKeymaster@dimantonak: Don’t delete the code. You can just hide with the help of CSS. Send me your site URL?
March 31, 2013 at 6:05 pm #6218AneeshMemberThank you sakin. It is working.
One more doubt. Can I change the color of menu bar and foot bar.
If yes can you help me to do so. my website is http://daffodilsgroup.net/lifespace
I want to change it from dark grey to blue.
March 31, 2013 at 6:06 pm #6219AneeshMemberThank you sakin. It is working.
One more doubt. Can I change the color of menu bar and foot bar.
If yes can you help me to do so. my website is http://daffodilsgroup.net/lifespace
I want to change it from dark grey to blue.
I am not sure whether I posted the question in the right topic.
Please excuse.
April 2, 2013 at 12:29 am #6277SakinKeymaster@Aneesh: Just add the following CSS in “Custom CSS” box in Theme Options panel. Change the color code as per your need.
#header-menu, #header-menu ul.menu ul a { background-color: #0000CD; }
#header-menu .menu .current-menu-item > a,
#header-menu .menu .current-menu-ancestor > a,
#header-menu .menu .current_page_item > a,
#header-menu .menu .current_page_ancestor > a,
#colophon .menu .current-menu-item a {
background-color: #191970;
}
#header-menu ul.menu li:hover > a,
#header-menu ul.menu a:focus,
#colophon #access-footer ul.menu a:hover,
#colophon #access-footer ul.menu a:focus {
background-color: #191970;
}
April 2, 2013 at 8:30 am #6295AneeshMemberThank you sakin.
Now menu colour is changed.
I would also like to change the the color of footer bar.
Can you help me. my website is http://daffodilsgroup.net/lifespace
-
AuthorPosts
- The topic ‘How to Remove Date and Author Name’ is closed to new replies.