Edd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Calling all posts from one categoryThanks for those links, I am still having a bit of trouble though. I’ve figured I need to use something like:
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>And I found I need to include
query_posts("cat=2");
as well. The above code generates posts from all categories, and when I try adding the query posts line I just get a 404 error. Where should I be putting that line?
Many thanks,Forum: Plugins
In reply to: Draft Control for WP 2.0?Have contacted him but was hoping someone may have a quick fix because I don’t believe the error is major.
Forum: Plugins
In reply to: Draft Control for WP 2.0?No it isn’t, hence why I asked for some help with getting to be compatible. ??
Forum: Fixing WordPress
In reply to: Customizing Login Page?It is all contained within the one page, there isn’t a seperate file for each part.
Forum: Installing WordPress
In reply to: URL cannot be foundI honestly don’t know, maybe it is a server issue? Or possibly check permissions? Did you rename wp-config-sample.php to wp-config.php and fill out the wp-config file?
Forum: Plugins
In reply to: Expandable/collapsable categories?Ok so if you look at the second link podz posted you’ll see a guide to achieve this.
So the first thing you want to do is get your FTP client open and create a new folder called “hacks”. Create it under the wp-content folder.
Once you’ve done this, you want to open up notepad and paste this code into it:
function kadabra(zap) {
if (document.getElementById) {
var abra = document.getElementById(zap).style;
if (abra.display == "block") {
abra.display = "none";
} else {
abra.display = "block"
}
return false
} else {
return true
} }Under file type, select “all files” and name it “kadabra.js” save it somewhere memorable and close notepad.
Return to your FTP client and upload the file you just created to the folder you just created (wp-content/hacks)
Now you want to navigate to /wp-content/themename/ and open up header.php for editing.
In header.php you want to add this code:
<script type="text/javascript" src="https://www.paulritter.co.nr/wp-content/hacks/kadabra.js">
</script>
Imbetween the “<head>” and “</head>” tags.
Save your changes and close header.php.
Now open up “style.css” and add
#m1, #m2, #m3, #m4 {
display: none;
}
to the bottom of the style.Now you said you wanted to collapse the links section, this is where I need someone else to fill in the last bit. See, the links header isn’t coded in the same way as “Categories” (at least not for me). I’ll have a look myself and post back but if anyone knows themselves, please post here to finish off my quick guide.
Hope that helps, post back with any problems.
Forum: Installing WordPress
In reply to: URL cannot be foundtry filezilla:
https://filezilla.sourceforge.net/(Dreamweaver’s FTP isn’t exactly ideal to be honest).
Forum: Themes and Templates
In reply to: another probably stupid question.What version of WordPress are you running? Maybe your plugin isn’t compatible? May be particularly true if you’re running 2.0.
Forum: Fixing WordPress
In reply to: This is getting sillyIf you go onto the admin panel then go Options -> General, there is a field that lets you put in the home page if it is different to the directory you installed in. This sounds like what you need?
Forum: Fixing WordPress
In reply to: Disabling uploadsAhh that’s great, thanks a lot Arlo!
Forum: Fixing WordPress
In reply to: Disabling uploadsThanks for the reply. I just managed to get the uploads working properly.. so how do I set the maximum file size for uploads?
Forum: Your WordPress
In reply to: Blog Frog – public group bloggingThanks, well we are open now so if you want to go have a look and possibly register and contribute, you are more than welcome to.
Forum: Plugins
In reply to: Personal blogroll per author/userAhhh well I’ve no experience with plugins.. I couldn’t find a current plugin for it either. Anyone able to help me out with this one?