tripdog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit Image in Media Library shows broken image linkHey I just had the same problem and resolved it this way:
http://wordpress.org/support/topic/edit-media-shows-broken-image?replies=2Hope this helps, good luck!
Forum: Fixing WordPress
In reply to: Edit Media shows broken imageUh ok, strange fix.
First I loaded up the 2010 theme to check and see if it was a theme related problem. After loading the 2010 theme the problem was solved. Moving on, the functions.php file was the prime suspect.
In comparing my functions.php code to that of the 2010 theme I noticed that in the 2010 theme, the opening ‘<?php’ tag is not ever closed with ‘?>’ so throwing caution to the wind, I too deleted the closing tag from my functions.php file and viola! Problem solved.
Hope this helps someone else out there.
Forum: Fixing WordPress
In reply to: Featured images do not display.phe.le thanks a ton. It almost works, but there is now a broken image link.
This is how I implemented your code example:
<div id="art-highlight-container"> <div id="focus-box3"> <a href="<?php the_permalink(); ?>"><img src="<?php $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(), 'original'); echo $thumbnail[0];?>" width="296" alt="<?php the_title(); ?>" /></a> </div><!-- div#focus-box3 --> </div><!-- #art-highlight-container -->Did I get the implementation wrong?
Forum: Fixing WordPress
In reply to: Featured images do not display.Oh by the way the site I’m working on is located at: http://aforsay.org/wp
The art-highlight box is the one directly adjacent to the calendar.
Thanks.
t
Forum: Fixing WordPress
In reply to: How do I link external pages in WordPress subnavigationI thirst for knowledge. I’m a budding developer and would love to know how to do this without the assistance of a plugin. 🙂
Forum: Fixing WordPress
In reply to: How do I link external pages in WordPress subnavigationThank you esmi, I will use this as a last resort but I’d really love to see how to do this manually.
Anyone? I’d rather not rely on a plugin if possible.
Forum: Fixing WordPress
In reply to: Privacy settings – cannot see protected blog optionActually I’m having the same troubles except my blog is not being hosted by WordPress. The files are on my host server.
Thanks in advance for any insight…