Phunky
Forum Replies Created
-
Forum: Plugins
In reply to: Vanilla forum integrationWith WP2 you could quite easily add the extra info need for vanilla into the wp_users table and access all the data thru wp_getusermeta()
I may have a look into this again, as i sadly lost most my wp_forum() that i was writing.
Forum: Fixing WordPress
In reply to: Sticky Postsjust display post on a page and exclude all posts that are not classed as Sticky’s.
a quick search thru the codex will show you how to reload the loop to display post within a page
Forum: Plugins
In reply to: Comments in Pages plugin?You need to add the comment code into the page template file thats why…
take it from single.php and place it into page.php or what ever page template you are using
Forum: Plugins
In reply to: Comment BanHmmmm well i guess it will be better to write a plugin that bans the user from even commenting.
As only registered users can comment
Forum: Plugins
In reply to: Comment BanHmmm u sure putting in there IP address will work? I dont wish kill other ppl quoting his name.
Forum: Fixing WordPress
In reply to: If category is 19 then…<?php
if(is_category(‘podcast’)){
echo ‘article has podcast’;
}?>
Tis what your after…
Forum: Fixing WordPress
In reply to: Organizing posts or pagesYou could use Pages and Child-Pages, allowing you to order the Parent-Pages how you like and have each Child-Page show within its parent when selected.
Doing it the above way basicly means that the Parent-Pages act as the categories and the Child-Pages act as Posts
Forum: Fixing WordPress
In reply to: Problem Displaying Recent Posts<php
if(is_category($id)){
#ignore this cat
} else {
place your WP code to print the posts here
}
?>Forum: Fixing WordPress
In reply to: BLOG APPEARANCE IN EXPLORERYeah i did the same, all i got was FireFox Crashing after eating up 450mb of memory.
But from what i did see if was made in some form of Micro$haft product. Most likely Frontpage/Publisher
Forum: Fixing WordPress
In reply to: Mass Deleting of PostsWhy not just use WordPress MU? Then everyone can have there own WordPress install to play with each and every lesson 🙂
Forum: Fixing WordPress
In reply to: BLOG APPEARANCE IN EXPLORERMore likely you have not coded you sight with IE in mind, and will be using CSS that IE can not understand.
Theres many ways to break IE with CSS, so there no simple answer really. Not untill you post a URL so ppl can look at the code at least…
Forum: Fixing WordPress
In reply to: Posted byuncomment the <?php the_author;?> line within index.php of you template
Forum: Fixing WordPress
In reply to: Comments on Pages?Its most certainly is, just add the comment form to the page template and “Bingo Bango” you can now have comments on your pages…
Forum: Plugins
In reply to: Want to use AJAX Technology in Comment Postinghttp://codex.wordpress.org will have all you need…
RTFM 4TW!
Forum: Fixing WordPress
In reply to: Is this forum a wp plugin?No this is powered by BBPress, a spin of forum for the makers of WordPress…