ThorHammer
Forum Replies Created
-
Forum: Plugins
In reply to: Custom fields – linked imageesmi, thank you som much!!
Forum: Themes and Templates
In reply to: Unique Custom field values?Good, as I thought. Thanks!
Forum: Fixing WordPress
In reply to: Using get_post_custom_valuesNever mind, I found a solution.
?php $languages=get_post_meta($post->ID,"languages",false); ?> <?php foreach($languages as $language) { echo "<img src=\"".$language."\" />The only down thing is that I have to enter a custom field “languages” several times with the full URL-path to the images. But, it works, and I am happy. Hope someone else in need of using custom fields are reading this short post.
Forum: Fixing WordPress
In reply to: Using get_post_custom_valuesbump..?
Forum: Themes and Templates
In reply to: LOST in some simple CSSThanks, I will think about it! By the way: I solved the issue when I cleared left in detail_listing_surround…
Forum: Themes and Templates
In reply to: LOST in some simple CSSHi!
No, this is on my local xammp. But the problem lies somewhere in the code mentioned above. But I just cant see where and why myself.Forum: Themes and Templates
In reply to: LOST in some simple CSSNope.. when its declared to left, it appears as a LEFT sidebar, correctly aligned, but it is supposed to be a RIGHT sidebar…
Forum: Your WordPress
In reply to: Redesigned to look like a news providerThanks for looking!
No, not really, this space is due to the nature of the flash plugin, WP-cumulus. I Have tried to limit the space, but thats beyond my capabilities…!Forum: Your WordPress
In reply to: Digital Camera BlogAdd some sidebar(s) in your theme CSS and fit it into your post/page/home templates. When your have a sidebar you can add widgets to it.
Forum: Themes and Templates
In reply to: custom fieldMAD000 – thank you!
Forum: Everything else WordPress
In reply to: Help what do i do?*IMPORTANT*Ask the police for advice.
Forum: Plugins
In reply to: Looking for a file-reservoirbump…
Forum: Themes and Templates
In reply to: Image size questionesmi, thanks for replying. Here we go:
in home.php:
<? if($post_image !== '') { // display the image, its alt text, and wrap it with a link to "single.php" ?> <div class="imgleft" > <a href="<?php the_permalink(); ?>" title="<?php if($post_alt !== '') echo $post_alt; else the_title(); ?>"> <img src="<?php echo $post_image; ?>" alt="<?php if($post_alt !== '') echo $post_alt; else the_title(); ?>" style="width:250px; " /></a></div>in single.php:
<img src="<?php echo $post_image; ?>" alt="<?php if($post_alt !== '') echo $post_alt; else the_title(); ?>" class="left" width="250px" />I would like the image (uploaded original in more than 1000 px wide) to be repeated on single.php to be about 900 px wide.
Forum: Themes and Templates
In reply to: Fatal Error in Header Script?I don’t mean the stylesheet, but header.php.
Your url?Forum: Themes and Templates
In reply to: Fatal Error in Header Script?Show us the code in line 2 in header.php