OthelloBloke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No Contents in the BlogURL?
Forum: Plugins
In reply to: Limit Login Attempts doesn’t work in 2.8Hey there…
I simply cannot login. Even without ANY plugins and ONLY this one… I can’t login with 2.8
Regards,
RyanForum: Fixing WordPress
In reply to: Custom FieldsWhy specifically not having the custom fields show in the loop? If you want the image in one place, and then the text in the other… that seems to be a css layout issue.
I may be missing something though…
Forum: Fixing WordPress
In reply to: Show comments on a separate web pageJust use this plugin – http://ww.wp.xz.cn/extend/plugins/get-recent-comments/ on the seperate page!
Forum: Fixing WordPress
In reply to: Can’t log in after 2.8 upgradeMy problem was the ‘limit-login-attempts’ plugin.
I renamed the plugin install and created a new one via ftp and then I could login fine. So I enabled the plugins one one by one – I disabled that particular plugin and everything was cool.
Forum: Fixing WordPress
In reply to: Can’t log in after 2.8 upgradeI can’t log in either – just did the auto upgrade, tried getting a new password sent to me and that doesn’t work either.
Someone help please?
Forum: Fixing WordPress
In reply to: Custom FieldsYou could also do the following. I’ll assume the custom field is called ‘Currently Reading’…
<?php $curread = get_post_custom_values(“Currently Reading”); if ( $curread != ” ) { ?>Currently Reading: <?php echo $values[0]; ?><?php } ?>
<?php the_content(); ?>
Forum: Fixing WordPress
In reply to: Custom Fields ImagesThis will help you – all you have to do is insert file name instead of the path.
http://ww.wp.xz.cn/support/topic/269066?replies=3#post-1069430
Forum: Themes and Templates
In reply to: image in custom fieldWhat I do is change the WP upload folder to not use datebased folders… then on each post add a custom field called ‘Image’ and in the value I put ‘imgname.jpg’ or whatever…
Then I use this:
<?php $imgtxt = get_post_custom_values("Image Title"); $values = get_post_custom_values("Image"); if ( $values != '' ) { ?> <a href="<?php echo get_option('home'); ?>/wp-content/uploads/<?php echo $values[0]; ?>" rel="lightbox" title="<?php if( $imgtxt != '' ) { echo $imgtxt[0];} ?>"><img src="<?php echo get_option('home'); ?>/wp-content/uploads/<?php echo $values[0]; ?>" alt="<?php if( $imgtxt != '' ) { echo $imgtxt[0];} ?>" title="<?php if( $imgtxt != '' ) { echo $imgtxt[0];} ?>" /></a><?php } ?> <?php the_content(); ?>That way if you don’t enter a custom field for Image, nothing will show.
Forum: Fixing WordPress
In reply to: Raw html in postsDude give people a chance man.
Try this: http://www.myvirtualdisplay.com/2008/09/11/including-free-form-php-into-wordpress/
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxI know this doesn’t help but if they’re not at 90 degrees they’re not corners. A corner can’t be rounded – that’s a curve 😉
Forum: Fixing WordPress
In reply to: Get Posts by Custom FieldFor those who care I fixed this by changing the query string to:
<?php query_posts(‘showposts=1&meta_key=lead-story’); ?>
Forum: Fixing WordPress
In reply to: Get Posts by Custom FieldSOMEONE?
Forum: Themes and Templates
In reply to: Right tool for blog on company web site?No effort whatsoever…
WP is about the greatest and most simplest all around cms script ever written.
Forum: Themes and Templates
In reply to: Looking for a very good Video theme