ifelse
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Power Your WordPress?“And the list of themes”
I’d imagine that a large majority of these themes will have been licensed under a GPL license (having been entered in Alex King’s theme contest) so technically he’s within his rights to redistribute them at cost (though anyone who purchases then can also redistribute them for free if wished) as long as he keeps the license agreement.
However, I take a very dim view of this spammish site; that said, his target market aren’t exactly the most innocent of victims.
Forum: Installing WordPress
In reply to: have the home address redirected to page 2The best way of solving this problem is by sidestepping your approach.
In your theme folder (/wp-content/themes/sharepointlike/), make a copy of the index.php that is there and save it as home.php.
At the very top of this file, add the following:
<?php query_posts('page_id=2'); ?>There’s more information on why this works via my various articles at http://ifelse.co.uk/tag/query_post
Forum: Alpha/Beta/RC
In reply to: Make 1.5 install work with 2.0 betaBefore you do so, be aware that
a) WP 2.0 is beta so it’s not production ready
b) There’s no turning back. The 2.0 tables are not compatible with 1.5.If you’re still intent on going through with it, make sure you take a backup of your DB before continuing.
Forum: Alpha/Beta/RC
In reply to: Kubrick errorOnce again, I’m not noticing any such issues in any of my browsers (IE6/XP, FF/XP or Safari/OSX). This appears to be a caching issue.
If a CTRL+F5 doesn’t work (and you’ve verified in other machines/browser and you’ve also deleted your webcache, it may be at an ISP/proxy server level.
Forum: Themes and Templates
In reply to: Daft question about fontsPodz, you are far too quick:)
As mentioned above, it’s a good idea to put in some work to learn some of the basics of CSS/web design. And by the different answers given by me and Podz, there are multiple solutions for the same goal.
Back up your edited files, have a play around and see how you fare. We all have to begin somewhere:)
Forum: Themes and Templates
In reply to: Daft question about fontsFirstly, these are CSS questions and you’re best served by reading up on CSS and HTML. Google for CSS Tutorials.
All the solutions underneath require that you open up /blog/wp-content/themes/default/style.css and add the specified code at the bottom of the file.
1. add
li{color:#fff !important}where fff is the desired color (in this case, fff = white).2. add
#header h1 a{where ff0 is the desired color (in this case, f00 = red).
color:#ff0;
}3. Add
#content p
{
font-family: arial;
}4. Google for CSS tutorials and play around. The best way to learn is to experiment.
Forum: Installing WordPress
In reply to: Comentem esse postCould you repost your WP issue in English as we’re having difficulties understanding your post?
Forum: Fixing WordPress
In reply to: how do you add images without wysiwyg editors?The img quicktag above the post box is a handy way to add the html markup.
Forum: Fixing WordPress
In reply to: Combining Conditional Tags? For sidebar display.Yep, I’m Phu Ly:) Glad it’s all sorted now:)
Forum: Alpha/Beta/RC
In reply to: WordPress database errorMacmanx is correct in saying that K2 isn’t supported in this forum.
The cause of the problem is that WP2.0 no longer has a user_level column as it’s moved to a role-based permissions from the older numeric user level design.
However, bear in mind that both WP2.0 and K2 are beta so things will break. This is not an upgrade but a means to test functionality.
Forum: Fixing WordPress
In reply to: Combining Conditional Tags? For sidebar display.Remove lines 23 and 50 i.e.
remove<?php if ( is_home() ) { ?>
and<?php } ?>Forum: Fixing WordPress
In reply to: Combining Conditional Tags? For sidebar display.You’ll also have to remove the closing } bracket as well (which is I suspect is on line 49). Give that a go and let us know how you get on.
If you still encounter difficulties, post your code on http://pastebin.ca/ and we’ll take a quick look.
Forum: Fixing WordPress
In reply to: Combining Conditional Tags? For sidebar display.Isn’t that everything? If that’s the case, just remove the if checks.
Forum: Fixing WordPress
In reply to: Combining Conditional Tags? For sidebar display.To restate the problem, you only want it to be displayed on individual pages such as Pages, single posts and archives but not on the front page.
Then instead of using
<?php if ( is_page() ) { ?>, work in reverse by using<?php if ( !is_home() ) { ?>
i.e. if it’s not the home page then show this.Forum: Alpha/Beta/RC
In reply to: WP Beta-1 released> “Fatal error: Call to undefined function: glob()”
This is due to the version of PHP installed by your hosting company being too old. Glob() was introduced in PHP 4.3 onwards.