xepox
Forum Replies Created
-
Forum: Your WordPress
In reply to: a heavily modified WP siteGreat site and great content. I am impressed of how you use WP. Really nice!
How did you make that calendar show future events? I have tried using WP’s calendar but couldn’t do it.
Cheers
Forum: Plugins
In reply to: Thumbnail HTML addition for upload.phpI would just like to point out the issue with validity since the code snippet in Strunk’s post is corrupted.
What you need to do is to remove the / in the line mentioned by Strunk. You will find the correct / just after the title tag, and right before the starting img tag.
As long as the code tag doesn’t like the php code it is impossible to post the correct code in here.
Cheers
Forum: Fixing WordPress
In reply to: Error, Can’t create thumbnailsHI again.
Problem solved.
I found the place causing the error. A typo made by myself of course, hehe.
Cheers
Forum: Plugins
In reply to: ViewLevel pluginBump.
Can anyone please tell us where we find this plugin or the extended version mentioned further up this thread.
Fuboma.org is down and has been for a week now (at least when I try to get there).
Thanks.Forum: Fixing WordPress
In reply to: problems with ISO8859-1 and UTF-8 in formsHi again Serendipty.
I had a login I just had lost my password and had problems finding the “lost password?” link on this forum. Now I found it so here you have me as a member.
Well..
I added accept-charset to the form (look at code abowe). Why -1 and not -15? I dunno really, but all referencec to Norwegian in different documents point to -1. Why -15?
Also, I have removed the accept-charset and that fixed the faulty characterset when using Firefox. So everything is alright now, although I don’t understand why.
To sum up:
* Whithout your header info, WITH accept-charset=ISO-8859-1
the server send faulty mails when using IE
the server send OK mails when using Firefox
* With your header info, WITH accept-charset=ISO-8859-1
the server send OK mails when using IE
the server send faulty mails when using Firefox
* Without both accept-charset and your header
both IE and Firefox fails. But OK if AddDefaultCharset UTF-8 in .htaccess
So are we any closer? Does anybody else have a clue to what’s going on?
AndreasForum: Plugins
In reply to: cat-widgetI am using this plugin. It worked OK for a while, but now it lists all posts, no matter what.
The strange thing is I get this:
August (2)
2 is correct as it is only two posts in the only category (id 15) i want to show. However, all posts are listed when i click the August link.
I use this line to get the archives filtered:
<?php get_cats_archives( ‘monthly’,”,’html’,”,”,true,’15’ ); ?>
As I said, this has worked all the time but suddenly it now acts strange.Forum: Plugins
In reply to: Filter Categories in Nicer ArchivesI am using this plugin. It worked OK for a while, but now it lists all posts, no matter what.
The strange thing is I get this:
August (2)
2 is correct as it is only two posts in the only category (id 15) i want to show. However, all posts are listed when i click the August link.
I use this line to get the archives filtered:
<?php get_cats_archives( 'monthly','','html','','',true,'15' ); ?>
As I said, this has worked all the time but suddenly it now acts strange.Forum: Plugins
In reply to: Comment atributeOK… I’ve solved it (i think) at least it works for me:
echo ' title="';
echo get_the_title();
echo '"';
I wrote this on he lines just before theecho '/>';
line in the function mentioned in the post abowe. (The function resides in functions-template.php)
Anyone: Could this have been solved in a better way using more effective PHP code? I tried to make a variable, but echoing it did this in the HTML: title=”$myvar”
BUT… for AA you must also do this to each category that is listed under your post (ie: news, or_whatever_categories_you_have).
cheers – AndreasForum: Plugins
In reply to: Comment atributeI think he means he want the title of a Post to also be the value of the title attribute for the Comments (0) hyperlink. So if I had a post like “Hi from Hawaii”, the Comments (0) title=”some_method_that_retrieves “Hi from Hawaii”” from DB.
I