<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WPThemeDesigner Support &#187; Tag: uploading - Recent Posts</title>
		<link>http://wpthemedesigner.com/support/tags/uploading</link>
		<description>Online Support Community</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 18:34:37 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wpthemedesigner.com/support/search.php</link>
		</textInput>
		<atom:link href="http://wpthemedesigner.com/support/rss/tags/uploading" rel="self" type="application/rss+xml" />

		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-542</link>
			<pubDate>Wed, 18 May 2011 07:16:52 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">542@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;I think you did it correctly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Artiatesia Deal on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-534</link>
			<pubDate>Wed, 04 May 2011 14:48:12 +0000</pubDate>
			<dc:creator>Artiatesia Deal</dc:creator>
			<guid isPermaLink="false">534@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Thank you for responding.&#60;/p&#62;
&#60;p&#62;I decided to make a test site without the customizations. When I input the code you suggested I got an error saying I had an extra &#34;&#38;gt;&#34; so where.  Here is my code.&#60;/p&#62;
&#60;p&#62;# Displays post image attachment (sizes: thumbnail, medium, full)&#60;br /&#62;
function dp_attachment_image($postid=0, $size='thumbnail', $attributes='') {&#60;br /&#62;
	if ($postid&#38;lt;1) $postid = get_the_ID();&#60;br /&#62;
	if ($images = get_children(array(&#60;br /&#62;
		'post_parent' =&#38;gt; $postid,&#60;br /&#62;
		'post_type' =&#38;gt; 'attachment',&#60;br /&#62;
		'numberposts' =&#38;gt; 1,&#60;br /&#62;
		'post_mime_type' =&#38;gt; 'image',)))&#60;br /&#62;
		foreach($images as $image) {&#60;br /&#62;
			$attachment=wp_get_attachment_image_src($image-&#38;gt;ID, $size); ?&#38;gt;&#60;br /&#62;
			if(!$attachment) { ?&#38;gt;&#60;br /&#62;
    &#38;lt;img src=&#34;http://keepingnickels.com/wp-content/uploads/2011/04/keepingnickels_thumbnail.jpg&#34; /&#38;gt;&#38;lt;?php&#60;br /&#62;
  &#38;lt;?php } else { ?&#38;gt;&#60;br /&#62;
&#38;lt;img src=&#34;&#38;lt;?php echo $attachment[0]; ?&#38;gt;&#34; &#38;lt;?php echo $attributes; ?&#38;gt; /&#38;gt;&#38;lt;?php&#60;br /&#62;
		}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Did I do it correctly? Thank you so much for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-532</link>
			<pubDate>Wed, 04 May 2011 01:15:16 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">532@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;See sample codes below:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;foreach($images as $image) {
  $attachment=wp_get_attachment_image_src($image-&#38;gt;ID, $size);
  if(!$attachment) { ?&#38;gt;
    &#38;lt;img src=&#38;quot;URL-of-default-image&#38;quot; /&#38;gt;&#38;lt;?php
  &#38;lt;?php } else { ?&#38;gt;
    &#38;lt;img src=&#38;quot;&#38;lt;?php echo $attachment[0]; ?&#38;gt;&#38;quot; &#38;lt;?php echo $attributes; ?&#38;gt; /&#38;gt;&#38;lt;?php
  }
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-531</link>
			<pubDate>Wed, 04 May 2011 01:09:54 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">531@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Artiatesia,&#60;/p&#62;
&#60;p&#62;You have already customized the theme so I'm not sure what changes you have made.&#60;/p&#62;
&#60;p&#62;To be able to fix this, you need to have programming experience. What you can do is to modify dp_attachment_image() at function.php and add conditional statement. If wp_get_attachment_image_src() returns false then you need to set the default image to show otherwise, show the attachment.&#60;/p&#62;
&#60;p&#62;Reference:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Artiatesia Deal on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-530</link>
			<pubDate>Tue, 03 May 2011 14:19:01 +0000</pubDate>
			<dc:creator>Artiatesia Deal</dc:creator>
			<guid isPermaLink="false">530@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hello I purchase the theme for my client to use in her site keepingnickels.com. This is in reference to the images. I add the custom field as suggested above. How can I use a default image for posts that don't have any images?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-386</link>
			<pubDate>Fri, 08 Oct 2010 15:59:53 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">386@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Alex,&#60;/p&#62;
&#60;p&#62;To remove encryption on footer, download the standard version of the theme at the members area then replace the footer.php with the footer.php in the standard package.&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex T. on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-385</link>
			<pubDate>Fri, 08 Oct 2010 15:15:49 +0000</pubDate>
			<dc:creator>Alex T.</dc:creator>
			<guid isPermaLink="false">385@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I set up a website using this theme (the free version with the encrypted footer) at &#60;a href=&#34;http://noticiasdevenezuela.info/&#34; rel=&#34;nofollow&#34;&#62;http://noticiasdevenezuela.info/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However, I later purchased your membership and downloaded the paid version of the theme, so I would appreciate if you could help me with one thing:&#60;/p&#62;
&#60;p&#62;How do I replace the footer safely without disrupting the site and without having to reinstall the theme completely (because I made some customizations on the theme that I do not want to tamper with or lose).&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Matthew Keegan on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-360</link>
			<pubDate>Sat, 18 Sep 2010 16:34:30 +0000</pubDate>
			<dc:creator>Matthew Keegan</dc:creator>
			<guid isPermaLink="false">360@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Thanks, Webmaster. I understand and, yes, that makes sense. I've been going back over some of my recent articles and making the changes and have come up with a uniform policy to make sure that photos appear as they should in the preview.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-359</link>
			<pubDate>Sat, 18 Sep 2010 02:52:11 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">359@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Matthew,&#60;/p&#62;
&#60;p&#62;I understand your concern. However the theme was set to use images uploaded via Wordpress only. It's actually a safer/easier implementation unlike having a lot of sources for post images.&#60;/p&#62;
&#60;p&#62;If you want other ways such as capturing images within post or using custom field, these will require theme updating/development. We can provide you with this service. Just let us know.&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Matthew Keegan on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-355</link>
			<pubDate>Fri, 17 Sep 2010 10:52:44 +0000</pubDate>
			<dc:creator>Matthew Keegan</dc:creator>
			<guid isPermaLink="false">355@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;I'm using this theme at autotrends.org and I have a question regarding photos:&#60;/p&#62;
&#60;p&#62;Some photos are being included on some of my pages while others are not. It appears those photos I've linked to from my URL don't work while those uploaded via WordPress do. Is there any way for this theme to capture a photo no matter how it is uploaded?&#60;/p&#62;
&#60;p&#62;Here is an example of a page in question:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.autotrends.org/page/5/&#34; rel=&#34;nofollow&#34;&#62;http://www.autotrends.org/page/5/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Many thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-324</link>
			<pubDate>Tue, 24 Aug 2010 18:54:44 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">324@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Kevin,&#60;/p&#62;
&#60;p&#62;I cannot help you with your questions since you aren't using our theme in the URL you sent. Let us know how we can be of help.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Rittershaus on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-319</link>
			<pubDate>Fri, 20 Aug 2010 18:35:18 +0000</pubDate>
			<dc:creator>Kevin Rittershaus</dc:creator>
			<guid isPermaLink="false">319@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;if you look here also &#60;a href=&#34;http://igbonewengland.org/wp/leadership/&#34; rel=&#34;nofollow&#34;&#62;http://igbonewengland.org/wp/leadership/&#60;/a&#62; how do I allow the pictures to go all the way across to the sidebar?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Rittershaus on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-318</link>
			<pubDate>Fri, 20 Aug 2010 18:24:29 +0000</pubDate>
			<dc:creator>Kevin Rittershaus</dc:creator>
			<guid isPermaLink="false">318@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;also when you read a post the add comment is right in the middle of it - how do I move that? Look here for example &#60;a href=&#34;http://igbonewengland.org/wp/person/chimamanda-adichie/&#34; rel=&#34;nofollow&#34;&#62;http://igbonewengland.org/wp/person/chimamanda-adichie/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Rittershaus on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-317</link>
			<pubDate>Fri, 20 Aug 2010 18:22:35 +0000</pubDate>
			<dc:creator>Kevin Rittershaus</dc:creator>
			<guid isPermaLink="false">317@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;ok- I figured that out (I had to add a post ;)) How to I add post thumbnails?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Rittershaus on "the web news theme"</title>
			<link>http://wpthemedesigner.com/support/topic/the-web-news-theme#post-316</link>
			<pubDate>Fri, 20 Aug 2010 18:20:52 +0000</pubDate>
			<dc:creator>Kevin Rittershaus</dc:creator>
			<guid isPermaLink="false">316@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;I purchased the the web news theme and I wanted to know how I get the layout like the demo? There are posts from different categories showing in a grid layout here &#60;a href=&#34;http://www.wpthemedesigner.com/2009/01/14/the-web-news-theme/&#34; rel=&#34;nofollow&#34;&#62;http://www.wpthemedesigner.com/2009/01/14/the-web-news-theme/&#60;/a&#62; but the template does not do that - how can I fix?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
