djavin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: When was the horrible revisions feature introduced?a plugin to do that would rock
Forum: Installing WordPress
In reply to: Fatal error: wp-db.php on line 487wow that scared the hell out of me!
But renaming the redirection plugin folder did the trick!
thanks plenty
Forum: Fixing WordPress
In reply to: Image upload problemI just changed the upload location under settings > miscelaneous to yearly and all my uploads/pics appear again and it all works again.
I dunno why, but you could try and maybe it fixes your problem too
Forum: Fixing WordPress
In reply to: Newby question on selecting a single post from a categoryI think I did it ?? (will I be ninja one day too? haha :P)
I now have it like this, would you agree or do you have another pointer for me on my way to woosha?
<?php $lastposts = get_posts('category=3'); foreach($lastposts as $post) : setup_postdata($post); ?> <table> <tr> <td><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></td><td> <?php if (!get_post_meta($post->ID, "image-portfolio", true)) : // Show no image if page doesn't contain image in custom field ?> <?php else : ?> <div class="portfolio-border"> <a href="<?php echo get_post_meta($post->ID, "url-portfolio", true); ?>" title="View Project Details for <?php the_title(); ?>"> <img src="<?php echo get_post_meta($post->ID, "image-portfolio", $single = true); ?>" width="25" alt="Preview - <?php the_title(); ?>" /></a> </div> <?php endif; ?></td> </tr> </table> <?php endforeach; ?> <?php $lastposts = get_posts('category=4'); foreach($lastposts as $post) : setup_postdata($post); ?> <table> <tr> <td><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></td><td> <?php if (!get_post_meta($post->ID, "image-portfolio", true)) : // Show no image if page doesn't contain image in custom field ?> <?php else : ?> <div class="portfolio-border"> <a href="<?php echo get_post_meta($post->ID, "url-portfolio", true); ?>" title="View Project Details for <?php the_title(); ?>"> <img src="<?php echo get_post_meta($post->ID, "image-portfolio", $single = true); ?>" width="25" alt="Preview - <?php the_title(); ?>" /></a> </div> <?php endif; ?></td> </tr> </table> <?php endforeach; ?>
Would you recommende to use categories to determine which post goes where on the competition chart?
My plan would be to have 32 posts (every competitor a post) and then on the template select 1a as the competitor for round 1 (competing against 1b) If 1a would win, I would asign category 8a to him, being a competitor in the next round too.
I know it’s not really building a blog, but I love WP, would be cool if I can add this chart to an event site that would have the regular blog and pages functionality too.
thanks already ??
Forum: Fixing WordPress
In reply to: Newby question on selecting a single post from a categorythanks, I’ll dive into that info ??
Forum: Fixing WordPress
In reply to: No “Read More”… Show entire post on front page?have a read here:
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No show on function ‘showrandomimages’ wp 2.7.1Woops, images where CMYK!
so problem was in the images themselves.
cheers, the plugin rules
Forum: Fixing WordPress
In reply to: HTACCESS Breaks Site, Pretty Permalinks aren’t workingMaybe try and add this in a .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
This is what my installation of WP adds to the .htaccess when i turn on pretty perma links. I don’t know if it will work, but give it a try anyway ??
Forum: Fixing WordPress
In reply to: How to manually add calendar widgeti use this for today±
<?php echo todays_events(); ?>
and this for upcoming events
<?php echo upcoming_events(); ?>
Works fine when plugin is active ??
Forum: Fixing WordPress
In reply to: [Plugin: HeadSpace2] Problems in 2.7now it seems is has broken down completely :'(
Forum: Fixing WordPress
In reply to: [Plugin: HeadSpace2] Problems in 2.7Keywords is now showing in the post edditing screen, but first time I update ‘Keywords’ it comes with this error message:
Warning: unserialize() expects parameter 1 to be string, array given in /storage/morefolders/wp-content/plugins/headspace2/modules/page/custom.php on line 37
???
Forum: Fixing WordPress
In reply to: [Plugin: HeadSpace2] Problems in 2.7I am starting to believe it gets messed up by the new ‘Screen options’ function on top of the edditting a page screen? Somehow, clicking this on and off, non of the fields are showing, except for the big field to enter text…