gspx
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Super Cache – No Errors but No Action?define('WP_CACHE', 'true');
?
Is there already, removing and adding manually doesn’t seem to make any difference.Thanks for the reply though, appreciate the help ?? ??
Forum: Fixing WordPress
In reply to: Moved WP into subdir, suddenly stuff breaks.. I followed that. Doesn’t help much, it’s a link to the same article I mentioned myself.
Forum: Fixing WordPress
In reply to: Display post only if certain category page?Try this:
` <?php if (in_category(’55’)) {
} else {
} ?>For category 55.
Forum: Developing with WordPress
In reply to: No Posts FoundTry installing manually, and posting this in the installation / post-installtion problems forum – it’s not an advanced issue.
Fantastico isn’t what I’d choose to use for installation, just put a manual isntall up and check that.
Forum: Developing with WordPress
In reply to: custom database searchthere is a plugin called wp-folksonomy that might be able to help you tag images to their photographers, otherwise if each photographer has his/her own username, you could make a search that does something like this
SELECT * FROM users WHERE NAME="name"
that gives you the row with their IDThen you can search teh posts db with their ID number.
It’s a heavy query though, may well not be the best way.Forum: Fixing WordPress
In reply to: Import ErrorI think it’s wp-content/uploads.
Forum: Fixing WordPress
In reply to: Akismet Key ValidationIt means your server isn’t connecting to akismet.com , so it cant spamcheck.
If it’s a dedicated server, then ask your server administrator. Check your error logs, too.Forum: Fixing WordPress
In reply to: Ht access on free.fr created by wordpressThat has to be at the top of .htaccess or pretty links wont work, changing it is not reccomended.
Forum: Fixing WordPress
In reply to: Error 404 – Not Found when clicking archivesMatt.
I went to /2008/06, and it loaded just fine for me. Is it still ERR’ing for you?Forum: Plugins
In reply to: Asides Posts# <?php if (have_posts()) : ?> # # <?php while (have_posts()) : the_post(); ?> # # <?php } elseif(in_category(72)) { ?>
you cant end the if for the posts without giving it something to if about.
you need <?php if(in_category(44)) { ?> between the bottom 2 lines, otherwise PHP will ERR.
And can you put the template I gave you onto the site, and post the errors it provides, that way I can see what’s wrong?Forum: Fixing WordPress
In reply to: Broken post title linkI see ?p= permalinks, and nothing is broken.
Forum: Fixing WordPress
In reply to: Displaying related posts from specific categorysingle_tag_title("", false);
try
single_tag_title('', 'false');
If it’s still blanking, open up your error log in cPanel / plesk and see if there is anything there.
Forum: Fixing WordPress
In reply to: Assigning category ID’s?? Glad I helped.
There’s an option somewhere to set this topic to resolved, which means people like me won’t keep coming back to answer it.
Good luck ??Forum: Fixing WordPress
In reply to: comments don’t work if email address is on same domain as blogDoes this happen if you’re logged into the admin panel?
Forum: Fixing WordPress
In reply to: how to add in a page the list of tag used inall the blogHey
The easiest way I know of is to create a custom page template. It’s really easy, just follow these steps:
1 – open up your index.php, or single.php
2 – Copy the contents into a new file, save it astag_archive.php
3 – At the top of that file, paste the following:<?php /* Template Name: Tag Archives */ ?>
4 – Look for where it says
<?php the_content();?>
or similar. Replace it with this:<?php the_content();?> <ul> <?php wp_tag_cloud('smallest=8&largest=22&number=0&orderby=name'); ?> </ul>
5- Save and upload into your themes dir.
6 – Make a new page, and call it tag archives or something. Make a header, and some content, and scroll to the bottom of the page, where the option ‘post template’ is. Click on that, and select dropdown box, going for ‘Tag Archive’.
7 – PublishNow when you visit your page, you’ll get the title, content and below it, a tag cloud.
Hope this helps!