kristin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problems with K2 thememost likely you uploaded the “k2” folder as a subfolder of another folder.
The theme files need to be located at:
/wp-content/themes/k2/style.css
/wp-content/themes/k2/index.phpetc..
if this isnt the problem, my only other suggestion is to check the file permissions
Forum: Your WordPress
In reply to: my try with wordpressVery nice. Love the colors. It’s very eye catching ??
Forum: Your WordPress
In reply to: BiLOG.panelo.comVery cool looking… but I’m not a fan of tables =)
Forum: Your WordPress
In reply to: review my site pleaseVery tidy. I like it.
Forum: Your WordPress
In reply to: It’s done and up! What do you think?oh my… that looks familiar LOL
Forum: Plugins
In reply to: displaying subpages dynamicallythis is the way k2 does it ( https://www.binarybonsai.com/k2/ )
<?php /* Creates a menu for pages beneath the level of the current page */
if (is_page()) {
$current_page = $post->ID;
while($current_page) {
$page_query = $wpdb->get_row(“SELECT ID, post_name, post_parent FROM $wpdb->posts WHERE ID = ‘$current_page'”);
$current_page = $page_query->post_parent;
}
$parent_id = $page_query->ID;
$parent_name = $page_query->post_name;$test_for_child = $wpdb->get_results(“SELECT * FROM $wpdb->posts WHERE post_parent = ‘$parent_id'”);
if($test_for_child) { ?>
<div class=”sb_pagemenu”><h2><?php echo $parent_name; ?> Subpages</h2>
-
<?php wp_list_pages(‘sort_column=menu_order&title_li=&child_of=’. $parent_id); ?>
</div>
<?php } } ?>Forum: Plugins
In reply to: WP Plugin: Flickr Photos (v 0.1) & Flickr Album List (v .0.1)I’m having some problems with the flickr-album-list plugin
1. the link it creates only works if you use mod_rewrite with the flickr-gallery, is there any way to modify it to work without mod_rewrite? I couldn’t get flickr-gallery to work with mod_rewrite so I just used it without.
2. is there any way to make it list only X amount of sets? I have 54 sets on flickr and don’t want to display all of them on my index page.
Forum: Fixing WordPress
In reply to: Host installed PHPsuexec now admin functions has errors:(Ditto errors, was after an upgrade to php5, then recompiled to old version of php and having the same errors still… I don’t think it has anything to do with phpsuexec because it’s been running on our server for ages..
Forum: Themes and Templates
In reply to: Blix & Password protected entriesOn the first page it says “Testing testing” and then “Enter your password to view comments”
On the index page I see a password form but the CSS for it is a little messed up
Forum: Themes and Templates
In reply to: Things aren’t lining up rightcheck the width of your div’s
Forum: Fixing WordPress
In reply to: all text in articles is aligned to the right??your text-align is justify, which gives it the look of a square
If you don’t want this edit your css file and change justify to left
Forum: Your WordPress
In reply to: New Workingbath DesignNice! I really liked your old design too.
Forum: Installing WordPress
In reply to: Blank screen when executing install.phptry checking the file permissions
Forum: Everything else WordPress
In reply to: WordPress 1.21 causing high loads?Try optimizing your database, might cut back a little bit of the load.
Upgrading would be a GREAT idea not just because 1.5 is so much more powerful, but because of security holes that might put your site or webhost at risk.You might want to ask them for proof of the load issues also… could be some type of ploy to get you to upgrade to a dedicated server.
Forum: Your WordPress
In reply to: loco theme test previewwill be very nice looking once its done.. there is gaps between the bg images in firefox and the comment form overlaps the background in firefox.