demka
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Thumbnails don’t show using custom fieldplease … is someone out there who could help me with my problem. I spent hours of trying to get it working and so far no go for me. Theme is using thumb.php file placed in madmagazine/plugins folder where cache forlder is placed as well … I checked the cache folder and even after uploading few images on my posts and inserted custom fields, cache folder is still empty … in view source, path seems to be fine so I just don’t understand http://www.bedroomfurnituredirect.co.uk/
Please, someone help
ThanksForum: Themes and Templates
In reply to: Can’t get image loaded using custom fieldsIt’s working now Peter, thank you
Forum: Themes and Templates
In reply to: Can’t get image loaded using custom fieldsThank you Peter. I’m sorry I’m very new to this. If I just replace
// this checks to see if an image file exists
if (isset($values[0])) {
?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php
// this is where the Lead Story image gets printed
$values = get_post_custom_values(“leadimage”); echo $values[0]; ?>” alt=”leadimage” id=”leadpic” />
<?php } ?>to this
// this checks to see if an image file exists
if (isset($values[0])) {
?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php
// this is where the Lead Story image gets printed
$values = get_post_custom_values(“leadimage”); echo $values[0]; ?>” alt=”leadimage” id=”leadpic” />
<?php } ?>would it work then? As I said I’m sorry but I’m not quite sure what I’m doing with it and I would really appreciate your help.
Thank youForum: Everything else WordPress
In reply to: way to know what people type in my wp-blogThat’s exactly what I wanted. Thank you very much.