greencode
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warning: in_array() expects parameterGreat. Thanks for this and it appears to have fixed my original problem.
Forum: Fixing WordPress
In reply to: Warning: in_array() expects parameterThanks for replying so quickly. I’m a little confused as to how this plugin works and what actually it does. I’ve installed it but where is it??
Forum: Plugins
In reply to: implementing magic fields on static pagesTry
<?php echo get('steel_roof'); ?>Forum: Plugins
In reply to: [Magic Fields] "Sorry, your nonce did not verify" after latest MF updateJust a thought but have you tried checking the “Use Standard File Uploader” checkbox in the Magic Fields settings?
Forum: Plugins
In reply to: [Easy Post Order] [Plugin: Easy Post Order] Can't DROP 'post_id'Bump
Me too. I can only get the Like button to appear but no comments section using WP 3.0.5
Forum: Fixing WordPress
In reply to: Post thumbnail cropAh ha, I’ve just installed and run Regenerate Thumbnails and that appears to have done the trick!
Forum: Fixing WordPress
In reply to: Post thumbnail cropI have Medium thumbnail as 450×300 but I’m using the functions.php so I can add more sizes than those in the Settings > Media section.
The reason why it’s only cropping to 400×300 and not 450×300 is that a 1024×768 image with width of 450 then has a height of 338 which is too high so it’s cropping it to the height of 300.
However I need it to crop at exactly 450×300.
Forum: Plugins
In reply to: [Magic Fields] WordPress Settings Menu DisappearsI optimised my WP database and the Pages panel appeared once again. You may want to try that.
Forum: Fixing WordPress
In reply to: Change order of Admin panels?Perfect – thanks so much for this.
Forum: Plugins
In reply to: [Magic Fields] WordPress Settings Menu DisappearsThat’s odd because I don’t even use that plugin.
Forum: Fixing WordPress
In reply to: Pre 1970 datesI ended up using this:
<?php if( $image = get_post_meta($post->ID, "year", true) ): ?> <?php echo $image; ?> <?php else: ?> <?php the_time('Y') ?> <?php endif; ?>Forum: Fixing WordPress
In reply to: Pre 1970 datesHi. Thanks for this – can you explain what code I would enter and how I would display it in my template. Thanks.
Forum: Plugins
In reply to: [Disqus Comment System] Add code only to pages that require it?Bump
Forum: Fixing WordPress
In reply to: Pre 1970 datesWell, I’ve gone ahead and done the above and all’s working well. Just need to remember to comment out the code on each new WordPress release!