Hi,
1) Can you please help me.. i like to remove author box in custom posts…
Bit more explanation:
I have installed WP-job manager plugin and advance lising manager plugin.. both the post showing author box below the posts.. that is kind of weird… i want to remove the author card for all custom post and only want to show on normal wordpress posts..
2) is it possible to remove author box only for particular category posts?
Is it possible to remove the author box for a particular wordpress category posts? if yes please let me know how it can be done?
Thanks
Venkatmani
http://sanitaryware.org
Hello vm3567,
I guess that you want to hide the Author Box for a certain post, right? To do this, please notice that you will have to use the post ID for your post and then with a bit of CSS you can hide it, just like at this example ->
.postid-28592 .author-box-wrap{
display:none;
}
The result -> http://screencast.com/t/6hkg5iTYsY
If is not what you mean, please provide more details about what you want to achieve so I will be able to provide a more accurate response.
Thanks.
Hi,
thanks for your reply. but i ment to remove a custom type post author box…
Please look at this link: http://sanitaryware.org/job/needed-project-sales-executives-hsil/
This is a custom post type by using wp-job manager plugin .. I want to remove author box from the entire job post. see the screeen shot of the author box below the job posting.. i want to remove it.. http://www.screencast.com/t/GhZFUaQJ
Hello,
I guess that your custom class for your custom post type is .single-job_listing. You can try to use the code below and place it in Theme panel->Cusotm CSS area. Please notice that you are using an untested plugin and we have no idea about the theme behaviour with this plugin, sorry! Below you can try my suggestion.
.single-job_listing .author-box-wrap{
display:none;
}
Thanks.
