Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: lost blog when tried to change themeAssuming you do:
the name of the template is held in two variables in the wp_options table (where ‘wp’ is the default table prefix, it’s possible you changed that), called ‘template’ and ‘stylesheet’.
The SQL command would be:
UPDATE wp_options SET option_value='default' WHERE option_name='template' OR option_name='stylesheet';That will reset your site to the default theme.
Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themeThat would be perfect, however I do understand that this is not always supported by hosting providers.
What tools does your hosting provider offer? MySQL administration?
Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themeLooks like your theme is not complete.
Apparently a file called [themedir]/functions/option.php is referenced by functions.php, but cannot be found. Do you have the option to upload your theme again?
Apart from that: are you able to reach your admin page directly, by pointing your browser to http://your.web.site/wp-admin?
Peter
Forum: Themes and Templates
In reply to: Background image for post title in Elelgant GrungeMaybe. What’s the url to your site?
Peter
Forum: Themes and Templates
In reply to: My header corners look like crapyes, it looks like hell 😉
There are several solutions, of which one I guess is the best: modify those corners. For starters, change the color from white to the background color (#D5D6D7).
Then you have to extend the left and right border (/wp-content/themes/default/images/kubrickbgwide.jpg) on the post to the lower corners, to let them touch the header jpg (you probably have to cut and paste them from the bg image into the header image).
I (personal opinion) would make the header image a bit less wide, to have it inside the background, not sticking out.
Peter
Forum: Themes and Templates
In reply to: open / close defaultsdefine ‘box’.
Peter
Forum: Themes and Templates
In reply to: where is a good step by step tutorial?Very cool of Chris Coyier to create them 🙂
This site is for css in general, but now he has dedicated another blog just for WordPress.
Peter
Forum: Themes and Templates
In reply to: Need help for Title css and imageSure:
$title=dp_clean($post->post_title, 26);Peter
Forum: Themes and Templates
In reply to: Black bits on the border of rounded white boxes?I would need an URL to your site to do that.
Peter
Forum: Themes and Templates
In reply to: Black bits on the border of rounded white boxes?So you changed background from black to red, right?
These corners are made up of small square images, which you have to modify, if you want them to be red as well.
Photoshop or Gimp can do that for you.
Peter
Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_VARIABLEWhat version of WordPress are you running?
line 995 of my taxonomy.php (2.8.4) shows a function called wp_count_terms, which doesn’t do any spectacular actions. Could it be that you’re having some quotes or semicolons in descriptions (categories or links for instances) or tags?
Peter
Forum: Themes and Templates
In reply to: where is a good step by step tutorial?Doesn’t really matter: if your mockup is on a piece of paper, the principle stays the same.
Peter
Forum: Themes and Templates
In reply to: Parse error: syntax error, unexpected T_VARIABLENormally you get this if some php statement misses a semicolon.
Don’t know how adding a video could mess up your php.
Peter
Are you using php4 by any chance?
Peter
Forum: Themes and Templates
In reply to: Page AnnoyanceHmmm, to provide a fitting answer, a link (to your site) is mostly always needed.
Trying to answer your question without it:
The navigation bar probably is formed through a function called wp_list_pages().
Although there might be a plugin to hide some pages from that menu bar, I found the easiest way to create my own links (by removing the wp_list_pages() function, and build the list items myself).
Peter