<?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: wordpress - Recent Posts</title>
		<link>http://wpthemedesigner.com/support/tags/wordpress</link>
		<description>Online Support Community</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 15:28:36 +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/wordpress" 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>webmaster on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support/page/2#post-539</link>
			<pubDate>Wed, 18 May 2011 07:07:57 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">539@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Kenny,&#60;/p&#62;
&#60;p&#62;Sorry, but I don't think it's a theme-related issue. Try using a different theme to see if the same issue happens. If same thing happens, perhaps you need to ask for a wordpress developer assistance to check your site and trace the issue.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kenny Russell on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-538</link>
			<pubDate>Sat, 07 May 2011 14:45:38 +0000</pubDate>
			<dc:creator>Kenny Russell</dc:creator>
			<guid isPermaLink="false">538@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;When trying to upload images using the image uploader in Wordpress posts, nothing is happening. I click on the &#34;upload image&#34; icon, but the image loader is not popping up.&#60;br /&#62;
I am using 3.1.2 and cannot downgrade as i forgot to back up before updating WP. is there a quick code edit to fix?
&#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 "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-529</link>
			<pubDate>Tue, 26 Apr 2011 15:51:53 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">529@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Andrew,&#60;/p&#62;
&#60;p&#62;Try resizing the image first before uploading to the site. That perhaps would do the fix.&#60;br /&#62;
The reason behind is that the php script that does the thumbnail generation cannot generate thumbnails for very large images.&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andrew Hallinan on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-528</link>
			<pubDate>Tue, 26 Apr 2011 15:35:33 +0000</pubDate>
			<dc:creator>Andrew Hallinan</dc:creator>
			<guid isPermaLink="false">528@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Why has it been 5 days with no reply?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christopher Dearmon on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-527</link>
			<pubDate>Sat, 23 Apr 2011 19:56:43 +0000</pubDate>
			<dc:creator>Christopher Dearmon</dc:creator>
			<guid isPermaLink="false">527@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Thank you for the reply.  Yes everything is working well now.  I went ahead and removed Wordpress version 3.1.1 and installed version 3.0.&#60;br /&#62;
That appears to have resolved all of the issues I was having.&#60;/p&#62;
&#60;p&#62;I am really enjoying the theme!&#60;/p&#62;
&#60;p&#62;Thanks again&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andrew Hallinan on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-525</link>
			<pubDate>Wed, 20 Apr 2011 17:15:53 +0000</pubDate>
			<dc:creator>Andrew Hallinan</dc:creator>
			<guid isPermaLink="false">525@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I have &#60;a&#62;http://www.tampaseo.com&#60;/a&#62;.  I have the theme installed.  Now, when I try to add an image to a post, nothing happens.  It does not work.&#60;/p&#62;
&#60;p&#62;I also cannot press &#34;edit&#34; on the permalinks button...&#60;/p&#62;
&#60;p&#62;Could you please help?&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-517</link>
			<pubDate>Tue, 19 Apr 2011 14:23:09 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">517@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Christopher,&#60;/p&#62;
&#60;p&#62;Are you still having some issues with your site? I went to your site and saw that everything's looking good. Let us know.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christopher Dearmon on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-515</link>
			<pubDate>Sun, 17 Apr 2011 19:56:30 +0000</pubDate>
			<dc:creator>Christopher Dearmon</dc:creator>
			<guid isPermaLink="false">515@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi WPTD Webmaster,&#60;/p&#62;
&#60;p&#62;I have recently downloaded the your Inceptive Theme for my web hosting site.  First off, Thank you for the fantastic theme!  I really am impressed with the visual aspect and the back end functionality of the site.&#60;/p&#62;
&#60;p&#62;I have run into a couple small issues while trying to setup the theme for my website.  I am wondering if you may have some guidance as to what I may be doing wrong?  I have reviewed the FAQ's provided in the theme and look through the forums, but still unsure why a couple features are not working for me.&#60;/p&#62;
&#60;p&#62;1. I am trying to configure my first post for the slider on home page.  The text and image are showing up fine, but I have also tried to add the &#34;Learn More&#34; and &#34;Buy Now&#34; buttons as shown in your Inceptive demo theme.  Unfortunately, they are only showing up as text in the slide.  They do not show as a link and they are not showing the button.gif for the background?  They are both showing in the actual post that I've created, but not on the homepage slider.  Any ideas?&#60;/p&#62;
&#60;p&#62;2. When trying to upload images using the image uploader in Wordpress posts, nothing is happening.  I click on the &#34;upload image&#34; icon, but the image loader is not popping up.  I have tried in both IE and Firefox.  I am not getting an error message, and nothing happens when I click the icon.  Any ideas on this one?&#60;/p&#62;
&#60;p&#62;If needed, the website is thewebsolutionsource.com&#60;/p&#62;
&#60;p&#62;I really appreciate your time and help!&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-464</link>
			<pubDate>Sat, 29 Jan 2011 23:55:26 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">464@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Meagan,&#60;/p&#62;
&#60;p&#62;Yes it's possible. Try doing this:&#60;br /&#62;
1. Go to plugins &#38;gt; jquery-slider.php&#60;br /&#62;
2. Go to line 24 where there is query_posts().&#60;br /&#62;
3. Edit query_post to look like this:&#60;br /&#62;
    query_posts(&#34;post_type=page&#38;amp;order=DESC&#34;);&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Meagan Cleary on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-462</link>
			<pubDate>Sat, 22 Jan 2011 19:44:23 +0000</pubDate>
			<dc:creator>Meagan Cleary</dc:creator>
			<guid isPermaLink="false">462@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;I'd like to feature pages instead of posts in the homepage slider, is that possible?
&#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>
		<item>
			<title>Minori Higuchi on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-280</link>
			<pubDate>Sat, 24 Jul 2010 09:35:41 +0000</pubDate>
			<dc:creator>Minori Higuchi</dc:creator>
			<guid isPermaLink="false">280@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Thank you very much for your replay.&#60;/p&#62;
&#60;p&#62;Yes, I am using Inceptive Theme on wordpress version 3.0.&#60;br /&#62;
That is a pity, but I love themes you designed.&#60;/p&#62;
&#60;p&#62;I am looking forward to new your theme!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-275</link>
			<pubDate>Fri, 23 Jul 2010 13:16:55 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">275@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Minori,&#60;/p&#62;
&#60;p&#62;I think you are using wordpress version 3.0. Right? That's one of the latest features in Wordpress 3.0. We currently  have not added that feature to our themes so that any version from 3.0 and below can work with our themes. We will add that feature when the current version gets very much stable on its new features.&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Minori Higuchi on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-272</link>
			<pubDate>Fri, 23 Jul 2010 08:04:52 +0000</pubDate>
			<dc:creator>Minori Higuchi</dc:creator>
			<guid isPermaLink="false">272@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hello webmaster,&#60;/p&#62;
&#60;p&#62;I can not change order of custom-menu by drag and drop at Appearance -&#38;gt; Menus.&#60;br /&#62;
Widgets works drag and drop perfectly, and any plugin is not installed. &#60;/p&#62;
&#60;p&#62;Are there solutions of this problem?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex T. on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-255</link>
			<pubDate>Fri, 25 Jun 2010 12:15:27 +0000</pubDate>
			<dc:creator>Alex T.</dc:creator>
			<guid isPermaLink="false">255@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Thank you very much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmaster on "Inceptive Theme"</title>
			<link>http://wpthemedesigner.com/support/topic/inceptive-theme-support#post-254</link>
			<pubDate>Thu, 24 Jun 2010 05:31:20 +0000</pubDate>
			<dc:creator>webmaster</dc:creator>
			<guid isPermaLink="false">254@http://wpthemedesigner.com/support/</guid>
			<description>&#60;p&#62;Hi Alex,&#60;/p&#62;
&#60;p&#62;To remove that part, go to admin/theme-functions.php at line 98.&#60;br /&#62;
There you will see the get_the_time() and  get_the_author_meta().&#60;br /&#62;
Be careful in editing. Make sure you keep the syntax correct.&#60;/p&#62;
&#60;p&#62;Hope this helps,&#60;/p&#62;
&#60;p&#62;WPTD Webmaster
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

