Just Thomas Misund
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Form for code posting<form><input type="text" value="The text that should go in the text box" /></form>I guess.
Forum: Plugins
In reply to: Plugin to Display Local Theater Movie Showtimes?If the local movie theater publish these showtimes with RSS, the simplest way would perhaps be the RSS-widget that comes with WordPress Widgets?
Forum: Fixing WordPress
In reply to: How to edit page HTML?Have you tried turning off the visual rich editor in Options –> Writing?
Forum: Fixing WordPress
In reply to: Tagging problem with Technorati tagsI’m Norwegian, been through some special character troubles myself. Have you tried changing the special characters to HTML-entities? Like
åinstead of å andÅinstead of Å?Edit: Forgot to put code between code-tags.
Forum: Fixing WordPress
In reply to: Home Page sundenly generate error !I’m not a MySQL genius, but my best guess is that the following text indicates that you have two tables named wp_post2cat in your WP database:
WordPress database error: [Not unique table/alias: ‘wp_post2cat’]
I didn’t think that was possible 🙂 Try logging in to your database through MyPhpAdmin or something like that and find out if this is correct. If it is, find out which wp_post2cat-table you would like to keep, and DROP the other one.
Good luck!
Forum: Themes and Templates
In reply to: possible to stop highlighting “home” tab in menu?It shows up just fine in WindowsXP/Firefox2. Have you changed it?
Forum: Plugins
In reply to: Monthly archives by author?If you link to a URL like this http://example.com/?cat=2&author=6 what should be displayed is a category page which displays posts in category 2 written by author number 6.
Does that help?
Forum: Installing WordPress
In reply to: Help Word Press DatabaseThe password should not only be displayed to you, but also emailed. Good luck.
Forum: Themes and Templates
In reply to: Category IndexHow about making your pages children of parent category pages?
Like:
Category Page
>Page 1
>Page 2
>Page 3
Second Category
>Page 1
>Page 2
>Page 3You can exclude children pages where you want to list the categories, and exclude the parents when you want to list all pages, and yet again list ‘children of’ if you want to list the pages in a certain category.
The downside to this is of course you can’t put a page in several categories.
Forum: Your WordPress
In reply to: New Romance /Book Store ThemeWork In Progress: Just need some clever php expert to tell me what function I need to limit the number of posts to show from my query function. That would be cool 😉
In the back-end (wp-admin), you can set how many posts will show in Options > Reading. This link should work.
Forum: Themes and Templates
In reply to: Category IndexI don’t really know if this will help you, but try and check out the Post2Page plugin. I think its listed in the codex list of plugins. It makes pages of your posts, so if you want to do something to a page that you can do with a post, it might be worth a shot. Good luck 🙂
Forum: Fixing WordPress
In reply to: Can’t delete a draft with a link in the titleThanks!
Forum: Fixing WordPress
In reply to: Display posts in two categoriesLooks like I’ll have to write a custom query then… 🙂
But I don’t understand the parent category strategy.
Let’s say I have posts about cafés (cat=1) and movie theaters (cat=2) in Scotland (cat=3) and Wales (cat=4). I put a post about a movie theater in Scotland in categories 2 and 3.
I then want to display posts about cafés in Wales (posts in both cats 1&4) without displaying posts about cafés in Scotland or movie theaters in Wales.
How do I do this with parent categories?
Edit: As you might figure, my posts span over a lot more categories, and this is a simplification to easier get a handle of the case.
Forum: Fixing WordPress
In reply to: <!–more–> fails when index loads from templateI know this is a resolved topic, but I’m just curious:
If I
1) install WordPress in http://example.com/wp/
2) create a WordPress Page http://example.com/wp/first-page/
3) create a file http://example.com/index.php that says
<?php
header('Location: http://www.example.com/wp/first-page/');
?>
Won’t that solve the problem at hand? Nice and easy?