markoburns
Forum Replies Created
-
Forum: Themes and Templates
In reply to: empty lines before source doctypeFound it – in functions.php
Forum: Installing WordPress
In reply to: MAMP white screen of deathI get a blank page too when I add a new post or publish an edit.
Where do you check the error log in MAMP?Forum: Fixing WordPress
In reply to: choose post different author removed in 2.8?sorted – users/ roles were messed up.
Forum: Fixing WordPress
In reply to: Archive display format – abbreviate monthHi oeln- could you explain a bit clearer what I’d do in general-template.php or locale.php to change the formatting to Jan?
Forum: Fixing WordPress
In reply to: registered user area edit submitted content?Thanks. Will look into roles.
freelanceswitch seems to have this feature pretty close to what I’m after.
Forum: Fixing WordPress
In reply to: Custom CSS class on imageYou mean put whatever I need into ‘alignnone’ for example?
what is ‘wp-image-16’ (or whatever number) when that appears in your code?
It doesn’t seem to appear in the main CSS file.Forum: Themes and Templates
In reply to: display thumbnails of entries in archive?hi – code seems to work if I put it in my main index.php file but not in my archive.php template file – strange.
Forum: Themes and Templates
In reply to: display thumbnails of entries in archive?Hi – tried that but it just seems to give me a blank page:
(my custom field=thumbs)<?php /* Template Name: Archives */ ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <img src="<?php echo get_post_meta($post->ID, "thumbs", true); ?>" alt="<?php the_title(); ?> Image" /> <?php endwhile; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: display thumbnails of entries in archive?Thanks. Will give it a go.
Its quite messy getting thumbnails in those fields. Given that they would all end up in my uploads folder and they get tagged with their size at end of filename I suppose this should work? if I’m just posting in the image url in the field?
in custom field: https://www.imageurl.com/imagename
<img src="<?php echo get_post_meta($post->ID, "Archive-Image", true); ?>-150x150.jpg" alt="<?php the_title(); ?> Image" />
Forum: Themes and Templates
In reply to: kubrick: difference between archive.php and archives.php?thanks.