shaza
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Easier PHP for Custom FieldNevermind, I figured it out
<?php $number= get_post_meta($post->ID, 'Number', true); $image = get_post_meta($post->ID, 'url', true); if ( $number && $image) { ?> <div class="image"> <b><?php the_title(); ?> - <?php echo $number; ?></b><br /> <a href="<?php the_permalink(); ?>"><img src="<?php echo $image; ?>" class="img" /></a><br /> </div> <?php } ?>Forum: Fixing WordPress
In reply to: Visual Editor never appears!I tried to check that box as well, no luck whatsoever ='(. I just really need this to work so that I can put some nice tables in there without it looking like crazy code to my client.
Forum: Themes and Templates
In reply to: This is NUTS….CSS IssueIt seems to be working for me…
Are you sure it’s not the <p></p> doing it? Just fix that with the #masthead p {margin: 0px; padding: 0px;}. I am too lazy to look at the floats if there are any.Forum: Fixing WordPress
In reply to: Visual Editor never appears!I have to check on the PHP errors but I tried the js_cache method, checked the tiny_mce_config file to make sure that it read “false” and no spaces were there, I also went ahead and made sure that wp_includes was CHMOD to 755.
The thing is, I’m wondering if it’s just me not setting it to visual editor. Is there a button I click?
Forum: Fixing WordPress
In reply to: Multiple ConditionsThanks! That seems to work pretty well!
Forum: Fixing WordPress
In reply to: Multiple Conditionshelppp mee