<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Blog Oh! Blog Forums Tag: Wordpress</title>
<link>http://www.blogohblog.com/forums/</link>
<description>Blog Oh! Blog Forums Tag: Wordpress</description>
<language>en</language>
<pubDate>Mon, 08 Sep 2008 08:27:01 +0000</pubDate>

<item>
<title>sallymcdonald on "WordPress 404.php ... Mysterious Sub-Sub-Subfolder Error."</title>
<link>http://www.blogohblog.com/forums/topic/wordpress-404php-mysterious-sub-sub-subfolder-error#post-695</link>
<pubDate>Fri, 22 Aug 2008 06:04:32 +0000</pubDate>
<dc:creator>sallymcdonald</dc:creator>
<guid isPermaLink="false">695@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Never mind, I figured it out.&#60;/p&#62;
&#60;p&#62;I modified the 404.php page as so, and everything works perfectly now.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php get_header(); ?&#38;gt;

&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;

&#38;lt;div class=&#38;quot;imagetitle&#38;quot;&#38;gt;
&#38;lt;img src=&#38;quot;http://www.example.com/wordpress/404error.gif&#38;quot; alt=&#38;quot;404 Error&#38;quot; title=&#38;quot;404 Error&#38;quot; /&#38;gt;&#38;lt;/div&#38;gt;

&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;
&#38;lt;h3&#38;gt;Sorry, that page wasn&#38;#39;t found.&#38;lt;/h3&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;?php get_sidebar(); ?&#38;gt;

&#38;lt;?php get_footer(); ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;/body&#38;gt;
&#38;lt;/html&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>sallymcdonald on "WordPress 404.php ... Mysterious Sub-Sub-Subfolder Error."</title>
<link>http://www.blogohblog.com/forums/topic/wordpress-404php-mysterious-sub-sub-subfolder-error#post-694</link>
<pubDate>Thu, 21 Aug 2008 23:12:23 +0000</pubDate>
<dc:creator>sallymcdonald</dc:creator>
<guid isPermaLink="false">694@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;I've discovered something strange ... When I switch my permalink structure from /%postname%/ to /%category%/%postname%/, my 404 page works regardless of how many fake sub-sub-subfolders I test.&#60;/p&#62;
&#60;p&#62;It also works when I use simply /%post_id%/ ... Just never when I use /%postname%/ on its own. Very strange.&#60;/p&#62;
&#60;p&#62;Here's to hoping someone responds.
&#60;/p&#62;</description>
</item>
<item>
<title>sallymcdonald on "WordPress 404.php ... Mysterious Sub-Sub-Subfolder Error."</title>
<link>http://www.blogohblog.com/forums/topic/wordpress-404php-mysterious-sub-sub-subfolder-error#post-693</link>
<pubDate>Thu, 21 Aug 2008 21:46:16 +0000</pubDate>
<dc:creator>sallymcdonald</dc:creator>
<guid isPermaLink="false">693@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hey everyone, I'm having a very strange problem at the moment with my 404 page. When I visit a fake subfolder such as:&#60;br /&#62;
&#60;a href=&#34;http://www.example.com/wordpress/abc/&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/wordpress/abc/&#60;/a&#62;&#60;br /&#62;
It works perfectly.&#60;/p&#62;
&#60;p&#62;When I visit a fake sub-subfolder such as:&#60;br /&#62;
&#60;a href=&#34;http://www.example.com/wordpress/abc/abc/&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/wordpress/abc/abc/&#60;/a&#62;&#60;br /&#62;
It still works perfectly!&#60;/p&#62;
&#60;p&#62;But if I visit a fake sub-sub-subfolder, (Or anything higher than a sub-sub-sub,) Such as:&#60;br /&#62;
&#60;a href=&#34;http://www.example.com/abc/abc/abc/&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/abc/abc/abc/&#60;/a&#62;&#60;br /&#62;
It only works halfway. My '404 Error' image shows up, but the accompanying text, 'Sorry, that page wasn't found.', doesn't show up at all, as if the text was never there.&#60;/p&#62;
&#60;p&#62;Everything else works perfectly, the header, the sidebar, the footer ... Everything except the text.&#60;/p&#62;
&#60;p&#62;I know this isn't normal behaviour, so how do I go about fixing it? Here is my 404.php's code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php get_header(); ?&#38;gt;

&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;

&#38;lt;div class=&#38;quot;imagetitle&#38;quot;&#38;gt;
&#38;lt;img src=&#38;quot;http://www.example.com/wordpress/404error.gif&#38;quot; alt=&#38;quot;404 Error&#38;quot; title=&#38;quot;404 Error&#38;quot; /&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;?php if(have_posts()) : ?&#38;gt;&#38;lt;?php while(have_posts()) : the_post(); ?&#38;gt;

&#38;lt;?php endwhile; ?&#38;gt;
&#38;lt;?php else : ?&#38;gt;
&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;
&#38;lt;h3&#38;gt;Sorry, that page wasn&#38;#39;t found.&#38;lt;/h3&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;?php endif; ?&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;?php get_sidebar(); ?&#38;gt;

&#38;lt;?php get_footer(); ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;/body&#38;gt;
&#38;lt;/html&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Jai on "Bob v.3 Tabs in Internet Explorer"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v3-tabs-in-internet-explorer#post-681</link>
<pubDate>Tue, 19 Aug 2008 19:24:26 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">681@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Try deactivating all your plugins and check again.
&#60;/p&#62;</description>
</item>
<item>
<title>Duncan on "Bob v.3 Tabs in Internet Explorer"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v3-tabs-in-internet-explorer#post-659</link>
<pubDate>Thu, 07 Aug 2008 03:15:42 +0000</pubDate>
<dc:creator>Duncan</dc:creator>
<guid isPermaLink="false">659@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;though when I removed the archive section from the table, IE7 still wouldn't load it as a table.
&#60;/p&#62;</description>
</item>
<item>
<title>Duncan on "Bob v.3 Tabs in Internet Explorer"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v3-tabs-in-internet-explorer#post-657</link>
<pubDate>Thu, 07 Aug 2008 03:13:06 +0000</pubDate>
<dc:creator>Duncan</dc:creator>
<guid isPermaLink="false">657@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Further on this, I suspect that what is causing this is the number of archived entries being too high.
&#60;/p&#62;</description>
</item>
<item>
<title>Duncan on "Bob v.3 Tabs in Internet Explorer"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v3-tabs-in-internet-explorer#post-649</link>
<pubDate>Wed, 06 Aug 2008 12:40:26 +0000</pubDate>
<dc:creator>Duncan</dc:creator>
<guid isPermaLink="false">649@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;I note there's a comment about javascript in the user notes for Bob V.3 relating to the tabs for recent posts, comments and archives in the sidebar. I've found the tab table works in Mozilla and Safari, but not in IE7 and Opera. Anything I'm missing?
&#60;/p&#62;</description>
</item>
<item>
<title>nayinian on "Make Olive Green box wider?"</title>
<link>http://www.blogohblog.com/forums/topic/make-olive-green-box-wider#post-543</link>
<pubDate>Mon, 23 Jun 2008 09:29:30 +0000</pubDate>
<dc:creator>nayinian</dc:creator>
<guid isPermaLink="false">543@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;i am who i am
&#60;/p&#62;</description>
</item>
<item>
<title>methow on "Make Olive Green box wider?"</title>
<link>http://www.blogohblog.com/forums/topic/make-olive-green-box-wider#post-517</link>
<pubDate>Fri, 20 Jun 2008 19:59:11 +0000</pubDate>
<dc:creator>methow</dc:creator>
<guid isPermaLink="false">517@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Ah, I considered that.&#60;br /&#62;
Sorry I didn't try before posting.&#60;/p&#62;
&#60;p&#62;Thanks so much (works perfectly now).
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "Make Olive Green box wider?"</title>
<link>http://www.blogohblog.com/forums/topic/make-olive-green-box-wider#post-514</link>
<pubDate>Fri, 20 Jun 2008 19:53:48 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">514@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Increase the width of both #box and #wrap equally together.
&#60;/p&#62;</description>
</item>
<item>
<title>methow on "Make Olive Green box wider?"</title>
<link>http://www.blogohblog.com/forums/topic/make-olive-green-box-wider#post-508</link>
<pubDate>Fri, 20 Jun 2008 03:37:12 +0000</pubDate>
<dc:creator>methow</dc:creator>
<guid isPermaLink="false">508@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Forgive me, I am very new to CSS. I love the Olive Green theme (many thanks) but would like the text to be wider on the screen. I tried changing the width in &#60;/p&#62;
&#60;p&#62;'#box { background:#fff; border:8px solid #fff; width:500px; table-layout:fixed; margin:0 auto; padding:0; }'&#60;/p&#62;
&#60;p&#62;but that just pushed everything to the right. Any way to keep the fixed width aspect but give the text more room?&#60;/p&#62;
&#60;p&#62;(I also tried changing '#wrap { width:500px; margin:20px auto; padding:0; }' with no success either.)&#60;/p&#62;
&#60;p&#62;Many thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "POPBLUE problem"</title>
<link>http://www.blogohblog.com/forums/topic/popblue-problem#post-379</link>
<pubDate>Mon, 21 Apr 2008 04:30:59 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">379@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;This is because popblue theme is meant to show excerpts and not the full posts. To do what you want to do, &#60;/p&#62;
&#60;p&#62;find this code in your index.php&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php the_content_rss('', TRUE, '', 150); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;change it to&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php the_content('Read More &#38;raquo;'); ?&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>uconnjill1 on "POPBLUE problem"</title>
<link>http://www.blogohblog.com/forums/topic/popblue-problem#post-374</link>
<pubDate>Sun, 20 Apr 2008 01:18:27 +0000</pubDate>
<dc:creator>uconnjill1</dc:creator>
<guid isPermaLink="false">374@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Sorry - the URL is &#60;a href=&#34;http://pophangover.com/wordpress&#34; rel=&#34;nofollow&#34;&#62;http://pophangover.com/wordpress&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>uconnjill1 on "POPBLUE problem"</title>
<link>http://www.blogohblog.com/forums/topic/popblue-problem#post-373</link>
<pubDate>Sun, 20 Apr 2008 01:13:53 +0000</pubDate>
<dc:creator>uconnjill1</dc:creator>
<guid isPermaLink="false">373@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hi all;&#60;/p&#62;
&#60;p&#62;Recently installed POPBLUE - and I'm having a formatting issue within the blog post itself. Images are not showing up in the posts, and any modification to the text (color, bold, etc) is not showing up. No &#34;enter&#34; or linebreaks are showing up either.  They look fine in the wordpress editor when Im writing the post, though. Any idea why this is happening? I'm going crazy trying to figure it out. I haven't modified the theme at all.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Jill
&#60;/p&#62;</description>
</item>
<item>
<title>irishplatinum on "Xplosive Reloaded exerpts"</title>
<link>http://www.blogohblog.com/forums/topic/xplosive-reloaded-exerpts#post-368</link>
<pubDate>Tue, 15 Apr 2008 04:16:16 +0000</pubDate>
<dc:creator>irishplatinum</dc:creator>
<guid isPermaLink="false">368@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Ever since I put in the offset the Older Entries link that is below the excerpts loads the same 4 posts for each older entries page.&#60;/p&#62;
&#60;p&#62;The older Entries works just fine when surfing a category.&#60;/p&#62;
&#60;p&#62;Also if you search and hit older entries it brings you back to page2 instead of continuing the search.&#60;/p&#62;
&#60;p&#62;Anyway to remove the excerpts? I commented them out and it worked fine in Firefox but IE didn't like it at all.
&#60;/p&#62;</description>
</item>
<item>
<title>gorky5 on "Questions about Rhea WP theme"</title>
<link>http://www.blogohblog.com/forums/topic/questions-about-rhea-wp-theme#post-297</link>
<pubDate>Wed, 12 Mar 2008 13:50:56 +0000</pubDate>
<dc:creator>gorky5</dc:creator>
<guid isPermaLink="false">297@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Great - thanks for your quick reply. I guess I'll have to do a bit of learning and experimenting!
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "Questions about Rhea WP theme"</title>
<link>http://www.blogohblog.com/forums/topic/questions-about-rhea-wp-theme#post-294</link>
<pubDate>Tue, 11 Mar 2008 19:21:21 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">294@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hello Gorky,&#60;/p&#62;
&#60;p&#62;1. To stop the timestamp to appear, just open index.php and remove everything from &#38;lt;small&#38;gt;....to....&#38;lt;/small&#38;gt;&#60;/p&#62;
&#60;p&#62;2. For random header images, you will have to modify a lot of code which I cannot tell you here. But if you have knowledge of PHP, you can use the image names in an array and then use random function of PHP to call them randomly.&#60;/p&#62;
&#60;p&#62;3. To make this change, open the style.css file and try to change the float alignments for the sidebars and see how it goes.
&#60;/p&#62;</description>
</item>
<item>
<title>gorky5 on "Questions about Rhea WP theme"</title>
<link>http://www.blogohblog.com/forums/topic/questions-about-rhea-wp-theme#post-289</link>
<pubDate>Mon, 10 Mar 2008 15:04:42 +0000</pubDate>
<dc:creator>gorky5</dc:creator>
<guid isPermaLink="false">289@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hi Jai. Thanks for a very informative site with some really smart-looking themes.&#60;/p&#62;
&#60;p&#62;I'm developing a site on localhost using the Rhea theme, which I *love*. However, I've hit a few issues which I've been unable to fix. I hope you can help, and don't mind me asking!&#60;/p&#62;
&#60;p&#62;1. I'm trying to stop the timestamp from showing on blog entries. The relevant code seems to be:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;code&#62;&#38;lt;abbr title=&#38;quot;&#38;lt;?php the_time(&#38;#39;Y-m-d\TH:i:sO&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php unset($previousday); printf(__(&#38;#39;%1$s &#38;#8211; %2$s&#38;#39;), the_date(&#38;#39;&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;&#38;#39;, false), get_the_time()) ?&#38;gt;&#38;lt;/abbr&#38;gt; - &#38;lt;?php if(function_exists(&#38;#39;the_views&#38;#39;)) { the_views(); } ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I've tried cutting out parts of this code, but I'm by no means a php expert! When I try either the date still shows or the page breaks. Can you let me know what I need to do?&#60;/p&#62;
&#60;p&#62;2. I'd like to have a rotating header image on my site. I've been using the example given by Matt Mullenweg at &#60;a href=&#34;http://ma.tt/scripts/randomimage/.&#34; rel=&#34;nofollow&#34;&#62;http://ma.tt/scripts/randomimage/.&#60;/a&#62; I can get it working properly on the 938x180 header.gif, but the Rhea theme includes the separate wrapper_top.gif. Is there a way of combining these two image files into one, so they rotate together and show a complete image?&#60;/p&#62;
&#60;p&#62;3. The final thing is to do with accessibility and SEO-friendliness. Is there a way to have the three columns appear in this order in the source: &#38;lt;entry&#38;gt; &#38;lt;lsidebar&#38;gt; &#38;lt;rsidebar&#38;gt;? At the moment &#38;lt;entry&#38;gt; appears quite far down the page in the code, which isn't terribly Google-friendly (and bad for visually impaired users with screen-reading software).&#60;/p&#62;
&#60;p&#62;Am I right in thinking this is a matter of changing page.php, single.php and index.php to move &#38;lt;div id=&#34;lsidebar&#34;&#38;gt; below &#38;lt;div class=&#34;entry&#34;&#38;gt;, and how should I change the css file to float the columns and keep the site displaying correctly?&#60;/p&#62;
&#60;p&#62;I suspect 2 and 3 aren't terribly easily solved, but if you can make any suggestions I'd really appreciate it. As I said, I think the Rhea theme looks fantastic and would love to use it (and gladly donate for your time).&#60;/p&#62;
&#60;p&#62;Joe
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "Auto Stumble?"</title>
<link>http://www.blogohblog.com/forums/topic/auto-stumble#post-276</link>
<pubDate>Tue, 26 Feb 2008 11:42:37 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">276@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;No, there is no plugin which can do that.
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "Please Help me with Wordpress Widgets"</title>
<link>http://www.blogohblog.com/forums/topic/please-help-me-with-wordpress-widgets#post-275</link>
<pubDate>Tue, 26 Feb 2008 11:42:09 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">275@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hello Xtreme,&#60;/p&#62;
&#60;p&#62;I am sorry but that is not my theme.
&#60;/p&#62;</description>
</item>
<item>
<title>Xtreme on "Auto Stumble?"</title>
<link>http://www.blogohblog.com/forums/topic/auto-stumble#post-268</link>
<pubDate>Wed, 06 Feb 2008 17:33:26 +0000</pubDate>
<dc:creator>Xtreme</dc:creator>
<guid isPermaLink="false">268@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;any plugin which can auto stumble your every new post?
&#60;/p&#62;</description>
</item>
<item>
<title>Xtreme on "Please Help me with Wordpress Widgets"</title>
<link>http://www.blogohblog.com/forums/topic/please-help-me-with-wordpress-widgets#post-267</link>
<pubDate>Wed, 06 Feb 2008 09:43:03 +0000</pubDate>
<dc:creator>Xtreme</dc:creator>
<guid isPermaLink="false">267@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Please Help me with Wordpress Widgets&#60;/p&#62;
&#60;p&#62;i want to use this theme in my website:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.wpthemesfree.com/view.php?theme_id=1990&#34; rel=&#34;nofollow&#34;&#62;http://www.wpthemesfree.com/view.php?theme_id=1990&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;there are two widgets but in the admin area when i am seeing in presentation, there is only 1 widget:( which is of left side:(&#60;/p&#62;
&#60;p&#62;how to edit the right side widget please help me please&#60;br /&#62;
and i want to use it to&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.apnaysms.net&#34; rel=&#34;nofollow&#34;&#62;www.apnaysms.net&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "BOB V2 Trouble with Plugins"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v2-trouble-with-plugins#post-205</link>
<pubDate>Thu, 17 Jan 2008 03:28:36 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">205@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;It seems to me that your wordpress installation is messed up. This has got nothing to do with the theme.
&#60;/p&#62;</description>
</item>
<item>
<title>hilts50 on "Xplosive Reloaded exerpts"</title>
<link>http://www.blogohblog.com/forums/topic/xplosive-reloaded-exerpts#post-202</link>
<pubDate>Wed, 16 Jan 2008 05:58:49 +0000</pubDate>
<dc:creator>hilts50</dc:creator>
<guid isPermaLink="false">202@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hi Jai,&#60;/p&#62;
&#60;p&#62;Great theme.  Thanks for taking the time not only to build it but also to support it.  I've been reading through the forum and have been very impressed with the time you spend helping people use your theme.&#60;/p&#62;
&#60;p&#62;I'd like to revert the posts page back to the normal wordpress post view (one above the next).  You know what I mean?  So all posts look like the first post, instead of being in the little boxes.  Thanks for any help you can give.
&#60;/p&#62;</description>
</item>
<item>
<title>yeppoonchronicle on "BOB V2 Trouble with Plugins"</title>
<link>http://www.blogohblog.com/forums/topic/bob-v2-trouble-with-plugins#post-201</link>
<pubDate>Tue, 15 Jan 2008 05:48:40 +0000</pubDate>
<dc:creator>yeppoonchronicle</dc:creator>
<guid isPermaLink="false">201@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I installed and activated the BOB V2 theme and am very happy with it. However, when I try to upload the All In One SEO Plugin and other plugins it won't show at all in my admin plugin. While FTP it does come up sitting on the server but then when I navigate to the admin section trying to activate, there is nothing???&#60;/p&#62;
&#60;p&#62;I do run the latest WP version and wonder whether this could be the culprit.&#60;/p&#62;
&#60;p&#62;Also, where to I input the ad code underneath the post section? In the world of things I can't find the place where it is located.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>yeppoonchronicle on "new at this"</title>
<link>http://www.blogohblog.com/forums/topic/new-at-this#post-200</link>
<pubDate>Tue, 15 Jan 2008 05:44:27 +0000</pubDate>
<dc:creator>yeppoonchronicle</dc:creator>
<guid isPermaLink="false">200@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;To upload any theme you will first need a domain name (GoDaddy.com) then a host (I recommend Hostgator) then you need to forward your domains DNS and install the wordpress.org software on your host (on the websites root). Once you got this you can upload any theme via FTP and change in the admin section.&#60;/p&#62;
&#60;p&#62;If you need help let me know, I offer a blog consulting service.
&#60;/p&#62;</description>
</item>
<item>
<title>aestival on "new at this"</title>
<link>http://www.blogohblog.com/forums/topic/new-at-this#post-196</link>
<pubDate>Mon, 14 Jan 2008 00:00:01 +0000</pubDate>
<dc:creator>aestival</dc:creator>
<guid isPermaLink="false">196@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;You can't upload themes to a wordpress.com blog.&#60;/p&#62;
&#60;p&#62;You'll need to download WordPress from &#60;a href=&#34;http://wordpress.org,&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org,&#60;/a&#62; and then upload it via FTP to a blog or subdomain.
&#60;/p&#62;</description>
</item>
<item>
<title>canuck on "Xplosive Reloaded exerpts"</title>
<link>http://www.blogohblog.com/forums/topic/xplosive-reloaded-exerpts#post-184</link>
<pubDate>Sat, 12 Jan 2008 10:57:27 +0000</pubDate>
<dc:creator>canuck</dc:creator>
<guid isPermaLink="false">184@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;Thanks Jai, works :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jai on "Xplosive Reloaded exerpts"</title>
<link>http://www.blogohblog.com/forums/topic/xplosive-reloaded-exerpts#post-183</link>
<pubDate>Sat, 12 Jan 2008 04:28:17 +0000</pubDate>
<dc:creator>Jai</dc:creator>
<guid isPermaLink="false">183@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;The posts viewed on the main page and the number of excerpts make up to the total number of posts you want to view in the wp-admin -&#38;gt; options -&#38;gt; reading. You can control it by going there.
&#60;/p&#62;</description>
</item>
<item>
<title>ChrisSchaffer on "Xplosive Reloaded exerpts"</title>
<link>http://www.blogohblog.com/forums/topic/xplosive-reloaded-exerpts#post-182</link>
<pubDate>Sat, 12 Jan 2008 02:43:50 +0000</pubDate>
<dc:creator>ChrisSchaffer</dc:creator>
<guid isPermaLink="false">182@http://www.blogohblog.com/forums/</guid>
<description>&#60;p&#62;That did the trick.&#60;/p&#62;
&#60;p&#62;Thanks for the help!&#60;/p&#62;
&#60;p&#62;the only other question I have is. how is the number of excerpts controlled?&#60;/p&#62;
&#60;p&#62;Thanks for providing the theme and responding to all of our questions here so quickly!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
