Mads Phikamphon
Forum Replies Created
-
Forum: Plugins
In reply to: Avoid pictures on the frontpage/category pagesYes, but they should only be gone on the front page/category pages, not on the individual post pages.
If I use the CSS solution, I need some way of telling WP which image class to use where.
Forum: Plugins
In reply to: Problems using GET variablesArghhh, doesn’t anybody know how to do this?
Forum: Themes and Templates
In reply to: Danish characters in single.php look badOops, you were right – somehow I mixed up the files when did the uploading.
Sorry about that.
Forum: Themes and Templates
In reply to: Danish characters in single.php look badThey have been saved with UTF-8 encoding, so the problem is elsewhere…
Forum: Plugins
In reply to: SQL file for instalattionThanks for your reply, but I want to change the default posts, categories and users, etc.
Nothing about that in the install-helper.php file π
Forum: Fixing WordPress
In reply to: Custom Session Variables Unset immediately?I have exactely the same problem π
Forum: Fixing WordPress
In reply to: Unicode/Western character encodingStill no idea why it do the above, but now I have at least found a solution.
All the relevant texts from the database are send through the method below and then everything looks fine.
function ConvertDanishCharacters($string) { $string = str_replace("Γ¦", "æ", $string); $string = str_replace("Γ", "Æ", $string); $string = str_replace("ΓΈ", "ø", $string); $string = str_replace("Γ", "Ø", $string); $string = str_replace("Γ₯", "å", $string); $string = str_replace("Γ ", "Å", $string); return $string; }Forum: Fixing WordPress
In reply to: Page not foundFixed, it looks like the post timestamp caused the problem.
I had set the post timestamp of some of my posts to later this month (February 2007) and experienced errors as described above.
Changing the post timestamp to current date or a previous date seems to have removed all the errors.
Forum: Plugins
In reply to: Textarea shows HTML tagsIt is not the GamerZ plugin. It is homemade, but I believe my code is ok since everything works fine if I run the PHP code outside WordPress.
I can’t access the plugins, I get a message saying “You are banned”??
Forum: Your WordPress
In reply to: Something different with a pinch of horseThank you for your reply.
I guess there aren’t any point in the voting. Some people will hopefully enjoy watching the pictures, so I guess that’s the point π
Agree about the theme – it’s not exactely exciting right now π
Forum: Plugins
In reply to: SELECT FROM wp_postsThanks for the method name.
I found my SQL error – it was one of the elusive error 40 that sometimes occurs if you don’t focus on the right areas of the window…
Forum: Plugins
In reply to: WordPress as CMS for a big site?That sounds quite interesting. I have only used WP 1, but I’ll immediately forget everything about work and do a google on WP parent pages π
Thanks, Mads