hi, how do i remove the date stamp in the bueno theme? am a newbie to css and have searched through the forums and cant find the answer.
the website is deactivated at the moment. but if someone can help please i will activate it for you to have a look. many thanks!
There are thousands of WordPress themes - which means that many people won't be familiar with your particular theme. So a link to your site where people can see the theme might result in more responses.
hi esmi,
here is a link: http://www.haveplentymusic.com/
thanks
We need to be able to actually see the site - not the maintenance mode holding page.
my bad, its deactivated now
Try adding:
.post .date {
display:none;
}
to custom.css
thank you! it worked. how do i get to to display a normal date with each post? for example 22 July, 2010? thanks
You'll need to edit your theme template files. What's just after:
<h2 class="title"><a title="<?php the_title(); ?>" rel="bookmark" href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
in index.php?
<p class="date">
<span class="day"><?php the_time('j'); ?></span>
<span class="month"><?php the_time('M'); ?></span>
</p>
<div class="entry">
<?php the_content(); ?>
</div>
<div class="post-meta">
Try:
<div class="entry">
<p class="date"><?php the_time('j F Y'); ?></p>
<?php the_content(); ?>
</div>
<div class="post-meta">
and remove
.post .date {
display:none;
}
from your stylesheet.
just tried it. it brings back the date stamp
Try:
<div class="entry">
<p class="new-date"><?php the_time('j F Y'); ?></p>
<?php the_content(); ?>
</div>
<div class="post-meta">
instead.
brings back the date as well. is there something i need to change in index.php?
brings back the date as well.
You said you wanted a date for each post!
it brings back the date stamp is what i meant
Leave:
.post .date {
display:none;
}
in your stylesheet.
hi esme
just to clarify. i've tried all that you have suggested plus combinations. the results have been:
1 the date stamp is removed which is great but no normal date shows
2 or the date stamp reappears
any suggestions? thanks
macknonalds
Member
Posted 1 year ago #
You can check Oozman's Date Remover plugin. http://oozman.com/oozing/ideas/archives/oozman-date-remover-wordpress-plugin
It works for me. And I think this plugin works on all of the themes. Maybe you can try it out.