spoerke
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Styling Menus in WP 3.03.0 applies a class to the 2nd level menu ul called sub-menu, so my original subnav class was no longer recognized. By changing the class for the 2nd level menu in the stylesheet to sub-menu everything has been repaired.
So, instead of
ul.menu_top li ul.subnav {
I have
ul.menu_top li ul.sub-menu {
I can’t believe I missed this simple fix. Bah!
Forum: Themes and Templates
In reply to: Styling Menus in WP 3.0Bump… anyone?
Forum: Themes and Templates
In reply to: Need help to remove an annoying icon from template<small>Posted: <?php the_time('jS F Y') ?> by <strong><?php the_author() ?></strong> in <?php the_category(', ') ?><br /> <?php the_tags( 'Tags: ', ', ', ''); ?></small>
The above code basically says, posted on this day at this time by author’s name, in this category, with these tags.
If you want to remove the author’s name, here’s the code you’ll keep:
<small>Posted: <?php the_time('jS F Y') ?> in <?php the_category(', ') ?><br /> <?php the_tags( 'Tags: ', ', ', ''); ?></small>
Forum: Themes and Templates
In reply to: Need help to remove an annoying icon from template- Go to your dashboard, click on the Appearance module, select “Editor” from the drop down list.
- Make sure your theme is selected for editing (top right corner)
- Open the Main Index Template (index.php) and find the code that looks similar to this:
<div class="postcomments"><?php comments_popup_link('0', '1', '%'); ?></div>
- Delete that
- Make sure no other pages contain that code and you should be good to go.
Forum: Themes and Templates
In reply to: i want to remove dates and category when postingActually the last part I told you is if you don’t want to allow comments on your posts. I think I misread your request the first time.
If you want people to be able to post comments
DO NOT DELETE<?php comments_template(); ?>
If you DO NOT want people to be able to post comments
DELETE<?php comments_template(); ?>
Sorry for the confusion.
Forum: Themes and Templates
In reply to: i want to remove dates and category when postingPost data:
Go to the “Editor” in the Appearance module of your admin section. Select your theme from the tab in the top right corner and delete the following lines from index.php, archive.php, search.php, single.php, and any other pages you find them in:
<p class="postinfo">By <?php the_author_posts_link(); ?> on <?php the_time('M j, Y') ?> in <?php the_category(', ') ?><?php edit_post_link('Edit', ' | ', ''); ?></p>
Comments:
Remove the following from single.php and any others you find it on:
<?php comments_template(); ?>
Hope that helps!