Microdot
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Problems after upgradeYep it was a clean install onto the new server with the latest version of WP, then imported my posts, comments and categories into the database.
The uploaded the plug-ins and activated them.
Forum: Fixing WordPress
In reply to: Extra Comment FieldsOoer.. alright then, I’ve made a text field in the main comments area like this..
<input name=”topic” type=”text” id=”topic” tabindex=”6″ value=”” size=”60″ />
it’s just getting what the user puts in there to display on the comments is the problem
Cheers for these hints,
Forum: Fixing WordPress
In reply to: Extra Comment FieldsYep, spent a few days looking through it, I don’t know PHP though..
Thanks for your help
Forum: Requests and Feedback
In reply to: Threaded CommentsTake a look at this
Forum: Plugins
In reply to: Custom fieldsI’d like to add that this is for user comments under each article
Forum: Plugins
In reply to: Custom fieldsHi, I’d like to know if this can be done too..
Many thanks for your help,
Forum: Fixing WordPress
In reply to: Loop question, making it display -1Yep, i’m trying to show the first post above the others, using a different format and plug in so it looks a bit special.. the the others towards the bottom of the page.. thanks again
Forum: Fixing WordPress
In reply to: Forum on WPAh! Cool, thank you very much ??
Forum: Plugins
In reply to: Meta Description Tag For CategoriesThanks moshu and Kafkaesqui – Fantastic!
Kafkaesqui, my site stats are gonna love you dude! Thank you very much.
Forum: Plugins
In reply to: Meta Description Tag For CategoriesMany thanks, could you tell me where it was moved to, I can’t find it.. but still need to know if there’s a solution.
Sorry for being a pain.
Forum: Plugins
In reply to: Meta Description Tag For CategoriesI just noticed I posted in the wrong section, sorry about that.
Forum: Plugins
In reply to: WordPress Category Posts Plugin v1.0If you include a LIMIT would the code look like this?
<?php wp_cat_posts(3) LIMIT 0, 20; ?>
I no nothing about PHP though, this is my way of learning.
Forum: Everything else WordPress
In reply to: Displaying posts on other parts of siteThank you so much for your help!
Forum: Everything else WordPress
In reply to: Displaying posts on other parts of siteOops sorry about this. Trying to change the catagory using the following code, but it displays all the latest posts.. how is this code looking to you? Again, thank you for your help.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category(’11’) ) { ?>
<div class=”post-cat-eleven”>
<?php } else { ?>
<div class=”post”>
<?php } ?>
<h2>“><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’); ?></small>
<div class=”entry”>
<?php the_content(); ?>
</div>
<p class=”postmetadata”>Posted in <?php the_category(‘, ‘); ?>
</div>
<?php endwhile; else: ?>
Sorry, no posts.
<?php endif; ?>I should also point out that I’m using the /%postname% permalink structure, I’m not sure if this has anything to do with the problem? Many thanks,
Forum: Everything else WordPress
In reply to: Displaying posts on other parts of siteFantastic!
I’ve tried it out, even customized parts and it’s working great.
Thank you very much, to both of you, for your help.