pramodd
Forum Replies Created
-
Forum: Plugins
In reply to: Posted how long ago pluginI have used several plug ins created by GamerZ including WP-Relativedate. Give it a try mate!!! I also take this opportunity to thank GamerZ for writing such easy to use plug ins.
Forum: Fixing WordPress
In reply to: Make A JumpDo you want to use post excerpts in place of titles? Is this what you are saying?
Forum: Fixing WordPress
In reply to: how to show the time of the post??Add following code to the loop:
Posted: <?php the_time(‘F jS, Y’) ?> <?php _e(‘at’); ?> <?php the_time() ?>
Forum: Plugins
In reply to: Convert wordpress to a web directoryThanks shortd81
Forum: Themes and Templates
In reply to: How to Add a Comma Using wp_list_categories?wp_list_categories is defined at line 209 in /wp-includes/category-template.php
Forum: Themes and Templates
In reply to: How to Add a Comma Using wp_list_categories?Use <?php the_category(‘, ‘) ?> instead of wp_list_categories()
Forum: Fixing WordPress
In reply to: Condition is_category help neededHi Jane,
I have not used the intersect plugin myself. I hope to try it in the next blog I do.
-PD-
Forum: Fixing WordPress
In reply to: LandzillaDid you verify that file size of CSS file on web server and your computer is the same? I think your CSS file is corrupted.
Forum: Fixing WordPress
In reply to: Excerpts everywhere except homepage.If you want excerpts of posts to be shown on archives & search results then replace the_content() with the_excerpt() in the theme files archive.php & search.php
To show full posts on index page the loop should contain
the_content() and NOT the_excerpt()Forum: Fixing WordPress
In reply to: Post Author not displayedYou are missing the semi-colon in PHP function calls.
Forum: Fixing WordPress
In reply to: De-nesting Link Categories.You have added E-Zines and Personal sections inside Links. Move them out of the Links section.
Forum: Plugins
In reply to: Convert wordpress to a web directoryI know of several web directory scripts. If WP is converted to a web directory and is payment gateway enabled I think it will have more functionality than a web directory script. Hope I can do this with WP. I am NOT giving up …
Forum: Fixing WordPress
In reply to: De-nesting Link Categories.I would also suggest that you make your navigation on the sidebar consistent – some items have a bullet … some do not.
Forum: Fixing WordPress
In reply to: Adding Comments to PagesLocate following code in page.php [template file]
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php endwhile; endif; ?>
In between these lines add following:
<?php comments_template(); ?>
Forum: Plugins
In reply to: Convert wordpress to a web directoryThanks for referring me to the wordpress membership plugin. I appreciate your inputs.
It would be nice if you could help me find the mod to convert wordpress installation to a web directory.