ceejayoz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: downloading new themeAre you saying you’re unable to upload the theme at all?
If you know where the WordPress directory is, the Tarski theme should be uploaded into wp-content/themes/tarski. At that point it should show up in the Themes page.
If you can’t find the wp-content folder, there’s not much we can do to help – you’d need to contact Network Solutions and ask where it is.
Forum: Themes and Templates
In reply to: downloading new themeAll you have to do is go to Design > Custom Image Header in your wp-admin and upload your new header image there. Doesn’t get much simpler than that.
Forum: Plugins
In reply to: Tarski load errorfrothy: get_default_feed() is a new function in WordPress 2.5.x. You’ll need to upgrade WordPress (and you should regularly anyways, to prevent your blog from being hacked).
claros: A fix for that is in Tarski 2.2.2.
Forum: Fixing WordPress
In reply to: how come this does not work “!_is_404”Your else statement is still being executed. You need something like this:
if(!is_404()) {
if(is_page() && $post->post_parent) {
$children = wp_list_pages("title_li=&sort_column=menu_order&child_of=".$post->post_parent."&echo=0");
} else {
$children = wp_list_pages("title_li=&sort_column=menu_order&child_of=".$post->ID."&echo=0");
}
}Forum: Themes and Templates
In reply to: Tarski Template Problem with WP 2.6A fix is available in Tarski 2.2.2.
Forum: Requests and Feedback
In reply to: Tarski – another PHP errorLooks like a permissions issue on the app/cache folder.
I’m no longer heavily involved in Tarski’s development, but Ben does a lot of supporting over in our forum.
Forum: Fixing WordPress
In reply to: Unable to access Site Admin in WP 2.5.1Looks like an extra space or new-line at the beginning or end of wp-config.php. There shouldn’t be any whitespace before or after the <?php ?> tags.
Forum: Developing with WordPress
In reply to: Where does WP Post?You can make a plugin to attach to the publish_post action.
Forum: Fixing WordPress
In reply to: More Space In Linebreaks.post p { margin-bottom: 1.5em; }in yourstyle.cssfile should do it. Increase or decrease the 2em figure as necessary – decimal values are okay.Forum: Themes and Templates
In reply to: where is the page template option??Templates are part of your theme, which will be in
wp-content/themes/your-theme-name.Forum: Fixing WordPress
In reply to: still spam after upgrade from 2.1.2 to 2.1.3I’ve found the Akismet plugin blocks the vast majority of spams – I’ve had 23,000+ spams and only about three went through thus far. It’s a phenomenal plugin.
The 2.1.2 to 2.1.3 upgrade wasn’t intended to fix spam problems, to my knowledge.
Forum: Fixing WordPress
In reply to: Problems with adwords, front page, visual vs. codeSounds like something you need to take up with Google, not WordPress.
Forum: Themes and Templates
In reply to: Background ImagesIn your CSS file:
body { background-image: url(/path/to/your/background/image.gif); }Forum: Themes and Templates
In reply to: Help! – 2 image headersYou’ll need to edit the HTML code of the theme. It’ll almost certainly be in
footer.php.Forum: Themes and Templates
In reply to: Is this a WORDPRESS customized theme?Any website can be a WordPress theme, really. When you come down to it, the end result of a WP theme is (X)HTML code, just like any other website.
It makes more sense with certain styles, but anything’s possible.