Remove Meta and Categories from single posts
-
Hi there,
I have already used css to remove the meta and categories from the single post.
As soon as they are removed, however, the height of the image that I have used as the page title decreases.
Can you help me? Can I remove meta from single post without css?
Thank you in advance.
Attachments:
You must be
logged in to view attached files.
Hello,
Navigate to Theme Settings > Blog > Single Post > disable the option author bio and check the issue.
Best Regards.
Hi,
Author bio is already disabled.
I would like the photo I have used in the page title not to show “Posted by.. on…” and the category of the post (I am also sending you a related screenshot).
As I mentioned above, I removed the above (Posted by.. on.. and category) with css, but it reduces the height of the photo (see the attachment Page title with css).
How can I fix it?
Attachments:
You must be
logged in to view attached files.
Hello,
Please add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.entry-meta-list {
display: none;
}
You can set different sizes for your page titles in the bottom of the page settings:
https://ibb.co/kgSNBh7
Best Regards.
Hi,
As I have already mentioned, I have already used the following css:
.entry-meta-list {
display: none;
}
.wd-post-cat.wd-style-with-bg{
display: none;
}
The problem is that when I use the above css, the size of the photo that exists as a background on the page title (of the single post) decreases.
I have already sent you the corresponding screenshots.
Let me mention again that I want to remove the post’s meta and categories from the single post.
Hello,
Control the height of the page title by the following CSS as per your requirements:
.title-size-large {
height: 400px;
}
Best Regards.