non-dated posts for ever
-
Hello,
I want my posts to appear without dates, all of them. I was told to, so I did upgrade my account, meaning now I can have it done using the CSS customization. But for that, of course I need your help.
Thanks.
AlexThe blog I need help with is: (visible only to logged in users)
-
I searched and found this https://en.forums.wordpress.com/topic/removing-the-date-from-the-cubic-theme?replies=2
-
Hi,
I need to do the same, but for puzzle theme. I gave the customize version as well.
The blog I need help with is http://germancardenas.com
Thanks
Ireri -
Ireri – if you want to remove the dates on your homepage in Puzzle, add this to your custom CSS:
.blog .post-meta-data { display: none; }CSS is theme-specific, which is why the Cubic code didn’t work in Puzzle – so you can remove this:
.entry-date { display: none; } -
Thank you!!!
It worked! I spent so many hours trying to fix it, it only worked with your code. -
You’re welcome!
If you’d like to learn more about how to target the right element in a theme so you can tweak it with CSS, check out these guides:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
-
-
Hi again,
Now I would like to remove the name and date from the top of every post. Is that possible?Thanks!
My blog is: http://germancardenas.com
Ireri
-
Ireri – the guides I provided earlier show you how to target the elements you need to make CSS tweaks.
Puzzle does not provide a separate class for dates on single posts:
<p class="post-meta-data"> September 13, 2012 <span class="sep">•</span> <a class="comments-link" href="#comments">0</a> </p>For that reason, you can’t simply hide the date class in this theme. You can try hiding the class post-meta-data but that will also hide the comments link.
.single .post-meta-data { display: none; }I don’t see the author name at the top of single posts on your site – could you provide a link to one where you see it?
If you need further help with CSS, feel free to post in the CSS Customization forum in the future, thanks.
-
Hi,
I meant the title, not the name (sorry)
This is one example: http://germancardenas.com/2012/09/13/the-cherry-orchard/
I would like to see the content of the post (my photos) and delete the title and date from the top (SEPTEMBER 13, 2012 • 0
The Cherry Orchard)
Is that possible?Thank you again!
Ireri -
This will remove the post titles on single posts:
.single .entry-title { display: none; }The CSS I provided just before will hide the date and comment link on single posts.
-
-
- The topic ‘non-dated posts for ever’ is closed to new replies.