<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MT Space Web Design</title>
	<atom:link href="http://mtspacewebdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mtspacewebdesign.com</link>
	<description></description>
	<lastBuildDate>Tue, 12 Mar 2013 14:30:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Forcing Shopp to Require a Zip Code</title>
		<link>http://mtspacewebdesign.com/blog/forcing-shopp-to-require-a-zip-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=forcing-shopp-to-require-a-zip-code</link>
		<comments>http://mtspacewebdesign.com/blog/forcing-shopp-to-require-a-zip-code/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 14:29:26 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=879</guid>
		<description><![CDATA[If any of you WordPress fans have used Shopp for your eCommerce needs, you might have noticed that it&#8217;s latest versions do require a zip code to get past the Cart.php page in the checkout process. Now, this isn&#8217;t such a big deal if you use flat rate shipping, but if you use real time&#160;<a href="http://mtspacewebdesign.com/blog/forcing-shopp-to-require-a-zip-code/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p>If any of you WordPress fans have used Shopp for your eCommerce needs, you might have noticed that it&#8217;s latest versions do require a zip code to get past the Cart.php page in the checkout process.  Now, this isn&#8217;t such a big deal if you use flat rate shipping, but if you use real time rates from UPS or FedEx, not requiring a zip code before checkout.php (the page that displays shipping rates) makes the checkout process somewhat confusing.   I decided to setup a way to force a zip code submit on the cart.php before allowing visitors to reach checkout.php</p>
<p><b>How, you ask?</b></p>
<p>In looking over cart.php during testing, I saw that the shipping total displays the text &#8220;Enter Postal Code&#8221; by default before a zip code is entered in the zip code input field.  Using jquery, I hid the proceed to checkout button if the default zip code text was being displayed.  I then added a message telling the customer that a zip code was required to proceed to checkout.  Once the customer enters a zip code, the site displays the checkout button.  Problem solved!</p>
<p>If you&#8217;d like, feel free to use the code below on your shopp cart.php template.</p>
<p></p><pre class="crayon-plain-tag">&lt;?php if (shopp('cart','hasitems')): ?&gt;
&lt;form id="cart" action="&lt;?php shopp('cart','url'); ?&gt;" method="post"  class="shopp validate"&gt;
&lt;big&gt;
	&lt;a href="&lt;?php shopp('cart','referrer'); ?&gt;"&gt;&amp;laquo; Continue Shopping&lt;/a&gt;
	&lt;a href="&lt;?php shopp('checkout','url'); ?&gt;" class="right checkout"&gt;Proceed to Checkout &amp;raquo;&lt;/a&gt;
&lt;/big&gt;

&lt;?php shopp('cart','function'); ?&gt;
&lt;table class="cart"&gt;
	&lt;tr&gt;
		&lt;th scope="col" class="item"&gt;Cart Items&lt;/th&gt;
		&lt;th scope="col"&gt;Quantity&lt;/th&gt;
		&lt;th scope="col" class="money"&gt;Item Price&lt;/th&gt;
		&lt;th scope="col" class="money"&gt;Item Total&lt;/th&gt;
	&lt;/tr&gt;

	&lt;?php while(shopp('cart','items')): ?&gt;
		&lt;tr&gt;
			&lt;td width="60%"&gt;
				&lt;a href="&lt;?php shopp('cartitem','url'); ?&gt;"&gt;&lt;?php shopp('cartitem','name'); ?&gt;&lt;/a&gt;
				&lt;?php shopp('cartitem','options'); ?&gt;
				&lt;?php shopp('cartitem','addons-list'); ?&gt;
				&lt;?php shopp('cartitem','inputs-list'); ?&gt;
			&lt;/td&gt;
			&lt;td  width="40%"&gt;&lt;?php shopp('cartitem','quantity','input=text'); ?&gt;
				&lt;?php shopp('cartitem','remove','input=button'); ?&gt;
				&lt;?php shopp('cart','update-button', array(
    						'value' =&gt; 'Update',
    						'class' =&gt; 'update-button2'
							)); ?&gt;&lt;/td&gt;
			&lt;td class="money"&gt;&lt;?php shopp('cartitem','unitprice'); ?&gt;&lt;/td&gt;
			&lt;td class="money"&gt;&lt;?php shopp('cartitem','total'); ?&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;?php endwhile; ?&gt;

	&lt;?php while(shopp('cart','promos')): ?&gt;
		&lt;tr&gt;&lt;td colspan="4" class="money"&gt;&lt;?php shopp('cart','promo-name'); ?&gt;&lt;strong&gt;&lt;?php shopp('cart','promo-discount',array('before' =&gt; '&amp;nbsp;&amp;mdash;&amp;nbsp;')); ?&gt;&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;
	&lt;?php endwhile; ?&gt;

	&lt;tr class="totals"&gt;
		&lt;td colspan="2" rowspan="5"&gt;
			&lt;?php if (shopp('cart','needs-shipping-estimates')): ?&gt;
			&lt;label for="shipping-postcode"&gt;Required - Please enter a zip code to proceed to checkout.&lt;/label&gt;
			&lt;?php shopp('cart','shipping-estimates'); ?&gt;
			&lt;?php endif; ?&gt;
			&lt;?php shopp('cart','promo-code'); ?&gt;
		&lt;/td&gt;
		&lt;th scope="row"&gt;Subtotal&lt;/th&gt;
		&lt;td class="money"&gt;&lt;?php shopp('cart','subtotal'); ?&gt;&lt;/td&gt;
	&lt;/tr&gt;
	&lt;?php if (shopp('cart','hasdiscount')): ?&gt;
	&lt;tr class="totals"&gt;
		&lt;th scope="row"&gt;Discount&lt;/th&gt;
		&lt;td class="money"&gt;-&lt;?php shopp('cart','discount'); ?&gt;&lt;/td&gt;
	&lt;/tr&gt;
	&lt;?php endif; ?&gt;
	&lt;?php if (shopp('cart','needs-shipped')): ?&gt;
	&lt;tr class="totals"&gt;
		&lt;th scope="row"&gt;&lt;?php shopp('cart','shipping','label=Estimated Shipping'); ?&gt;&lt;/th&gt;
		&lt;td class="money shipping"&gt;&lt;?php shopp('cart','shipping'); ?&gt;&lt;/td&gt;
	&lt;/tr&gt;
	&lt;?php endif; ?&gt;
	&lt;tr class="totals"&gt;
		&lt;th scope="row"&gt;&lt;?php shopp('cart','tax','label=Tax'); ?&gt;&lt;/th&gt;
		&lt;td class="money"&gt;&lt;?php shopp('cart','tax'); ?&gt;&lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class="totals total"&gt;
		&lt;th scope="row"&gt;Total&lt;/th&gt;
		&lt;td class="money"&gt;&lt;?php shopp('cart','total'); ?&gt;&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;big&gt;
	&lt;a href="https://www.janostech.com/e-store.html"&gt;&amp;laquo; Continue Shopping&lt;/a&gt;
	&lt;a href="&lt;?php shopp('checkout','url'); ?&gt;" class="right checkout"&gt;Proceed to Checkout &amp;raquo;&lt;/a&gt;
&lt;/big&gt;

&lt;/form&gt;

&lt;?php else: ?&gt;
	&lt;p class="warning"&gt;There are currently no items in your shopping cart.&lt;/p&gt;
	&lt;p&gt;&lt;a href="https://www.janostech.com/e-store.html"&gt;&amp;laquo; Continue Shopping&lt;/a&gt;&lt;/p&gt;
&lt;?php endif; ?&gt;

&lt;script type="text/javascript"&gt;
jQuery(document).ready(function($) {
	$('input#shipping-postcode').addClass('required');
});
&lt;/script&gt;
&lt;script type="text/javascript"&gt;
jQuery(document).ready(function($) {
if($('.shipping').html() == 'Enter Postal Code'){
    $(".checkout").hide();
}
});
&lt;/script&gt;</pre><p> </p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/forcing-shopp-to-require-a-zip-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing WordPress Custom Post Types by Category</title>
		<link>http://mtspacewebdesign.com/blog/listing-wordpress-custom-post-types-by-category/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=listing-wordpress-custom-post-types-by-category</link>
		<comments>http://mtspacewebdesign.com/blog/listing-wordpress-custom-post-types-by-category/#comments</comments>
		<pubDate>Mon, 01 Oct 2012 14:45:12 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=845</guid>
		<description><![CDATA[If you are looking for a way to list your WordPress custom post types by category, look no further! I was in the process of a redesign for a travel agent and need to create a custom post type for &#8220;travel Deals&#8221;, which then get broken down and listed by country. So, I set up&#160;<a href="http://mtspacewebdesign.com/blog/listing-wordpress-custom-post-types-by-category/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p>If you are looking for a way to list your WordPress custom post types by category, look no further! I was in the process of a redesign for a travel agent and need to create a custom post type for &#8220;travel Deals&#8221;, which then get broken down and listed by country. So, I set up the custom post type in my functions.php, built into it a taxonomy and was able to call the custom posts in my template. What I wasn&#8217;t able to easily figure out was how to sort the posts by listed categories.</p>
<p>Luckily, in my searching, I found a tutorial setup by <a href="http://wesbos.com/wordpress-list-posts-by-category/" target="_Blank">Wes Bos</a> which listed regular WordPress posts by category. I modified his code a bit and it now sorts custom post types by category as requested by my client. You can see my code in action <a href="http://mt-spaces.net/capricorn/new-deals/" target="_Blank">here</a> and feel free to use the code below on your projects!</p>
<p></p><pre class="crayon-plain-tag">&lt;?php
            // get all the categories from the database
            $cats = get_categories('taxonomy=types');

                // loop through the categries
                foreach ($cats as $cat) {
                    // setup the cateogory ID
                    $cat_id= $cat-&gt;term_id;
                    // Make a header for the cateogry
                    echo "&lt;h2&gt;".$cat-&gt;name."&lt;/h2&gt;";  
                    // create a custom wordpress query

                    $args = array(
						'tax_query' =&gt; array(
						array(
							'taxonomy' =&gt; 'types',
							'field' =&gt; 'slug',
							'terms' =&gt; ".$cat-&gt;name."
							)
							)
						);
					$query = query_posts( $args );
                    // start the wordpress loop!
                    if (have_posts()) : while (have_posts()) : the_post(); ?&gt;

                    &lt;?php
					$custom = get_post_custom($post-&gt;ID);
					$price = $custom["price"][0];
					$short_text = $custom["short_text"][0];
					?&gt;

				&lt;div id="gallery" class="one_column"&gt;

   				 &lt;ul class="portfolio"&gt;

   				 &lt;li class="clearfix"&gt;
           			 &lt;div class="clearfix"&gt;
                	&lt;span class="image-border"&gt;&lt;a class="image-wrap" href="&lt;?php the_permalink() ?&gt;" title="&lt;?php _e('Permanent Link to', 'theme1512');?&gt; &lt;?php the_title_attribute(); ?&gt;" &gt;&lt;?php the_post_thumbnail( 'portfolio-post-thumbnail-xl' ); ?&gt;&lt;/a&gt;&lt;/span&gt;
               			 &lt;div class="folio-desc"&gt; 
                        &lt;?php // create our link now that the post is setup ?&gt;
                        &lt;a href="&lt;?php the_permalink();?&gt;"&gt;&lt;?php the_title(); ?&gt; | &lt;?php echo $price; ?&gt;&lt;/a&gt;&lt;br /&gt;
                        &lt;p&gt;&lt;?php echo $short_text; ?&gt;&lt;/p&gt;
                        &lt;p&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;View Details&lt;/a&gt;&lt;/p&gt;

                        &lt;/div&gt;
            		&lt;/div&gt;
        		&lt;/li&gt;
        		&lt;/div&gt;

                    &lt;?php endwhile; endif; // done our wordpress loop. Will start again for each category ?&gt;
                    &lt;?php wp_reset_query(); ?&gt;
                &lt;?php } // done the foreach statement ?&gt;</pre><p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/listing-wordpress-custom-post-types-by-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Hosting</title>
		<link>http://mtspacewebdesign.com/blog/web-hosting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-hosting</link>
		<comments>http://mtspacewebdesign.com/blog/web-hosting/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 14:02:18 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=791</guid>
		<description><![CDATA[MT space Web Design is now offering hosting services! For only $60 a year ($5 a month) MT Space will host your website for you, set up your account, and provide you with access to a cpanel. The cpanel allows MT space clients to edit / add email accounts, setup ftp access, and much more.&#160;<a href="http://mtspacewebdesign.com/blog/web-hosting/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p>MT space Web Design is now offering hosting services!  For only $60 a year ($5 a month) MT Space will host your website for you, set up your account, and provide you with access to a cpanel.  The cpanel allows MT space clients to edit / add email accounts, setup ftp access, and much more.  Call 413-665-2000 if you are interested in having MT Space build your website and set you up with hosting.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Scroll Bars</title>
		<link>http://mtspacewebdesign.com/blog/custom-scroll-bars/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=custom-scroll-bars</link>
		<comments>http://mtspacewebdesign.com/blog/custom-scroll-bars/#comments</comments>
		<pubDate>Wed, 23 May 2012 22:54:15 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=731</guid>
		<description><![CDATA[Are you looking for an alternative to that clunky browser scroll bar? Check out]]></description>
				<content:encoded><![CDATA[<p>Are you looking for an alternative to that clunky browser scroll bar?  Check out <a href='http://areaaperta.com/nicescroll/">Nice Scroll</a> to see what can be done to spruce up your scroll bars on your website.  Whether you&#8217;re working with static html or a WordPress website, you&#8217;ll be able to add a nice touch with Nice Scroll.  Check back soon to see how it&#8217;s setup on your WordPress website.  Or, you can always have me set it up for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/custom-scroll-bars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple domains on your WordPress website</title>
		<link>http://mtspacewebdesign.com/blog/multiple-domains-on-your-wordpress-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=multiple-domains-on-your-wordpress-website</link>
		<comments>http://mtspacewebdesign.com/blog/multiple-domains-on-your-wordpress-website/#comments</comments>
		<pubDate>Tue, 22 May 2012 14:37:19 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=728</guid>
		<description><![CDATA[For those of you who have experienced some confusion setting up Multiple Domains on your WordPress Website, the Vintage Race Car Sales, Historic Car Collection to use the same WordPress theme (though separate themes can be used) &#038; the same WordPress content in the same database. While it might not have all the options of&#160;<a href="http://mtspacewebdesign.com/blog/multiple-domains-on-your-wordpress-website/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p>For those of you who have experienced some confusion setting up Multiple Domains on your WordPress Website, the <a href="http://wordpress.org/extend/plugins/multidomain/" target=_blank">MultiDomain</a> WordPress Plugin will save you some time and headache.  MultiDomain is a simple plugin that allows a WordPress website owner, or their developer, to use multiple domains on the same website.   </p>
<p>For instance, one of my new clients wanted to use three domains on his new website.  Using MultiDomain allowed <a href="http://vintageracecarsales.com/" target=_blank">Vintage Race Car Sales</a>, <a href="http://historiccarsales.com/" target=_blank">Historic Car Sales</a>, and <a href="http://historiccarcollection.com/" target=_blank">Historic Car Collection</a> to use the same WordPress theme (though separate themes can be used) &#038; the same WordPress content in the same database.</p>
<p>While it might not have all the options of a WordPress MU setup, it 95% less of the headache that setting up WordPress MU on a shared hosting plan for a site that is an Addon Domain.  Also, before you make the decision to use multiple domain names, make sure you read up on <a href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html" target="_blank">Duplicate Content</a> to learn the do&#8217;s and don&#8217;ts regarding multiple domains.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/multiple-domains-on-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cici Boutique Redesign</title>
		<link>http://mtspacewebdesign.com/blog/cici-boutique-redesign/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cici-boutique-redesign</link>
		<comments>http://mtspacewebdesign.com/blog/cici-boutique-redesign/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 19:01:40 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Prom Dresses Northampton MA]]></category>

		<guid isPermaLink="false">http://mtspacewebdesign.com/?p=723</guid>
		<description><![CDATA[Sample]]></description>
				<content:encoded><![CDATA[<p>Sample</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/cici-boutique-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eCommerce made easier with WordPress!</title>
		<link>http://mtspacewebdesign.com/blog/ecommerce-made-easier-with-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ecommerce-made-easier-with-wordpress</link>
		<comments>http://mtspacewebdesign.com/blog/ecommerce-made-easier-with-wordpress/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 11:08:51 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress eCommerce]]></category>

		<guid isPermaLink="false">http://MTSpacewebdesign.com/?p=236</guid>
		<description><![CDATA[One of the major hurdles of eCommerce, at least in my opinion, is finding a shopping cart that&#8217;s affordable and easily maintained. And, I don&#8217;t mean maintained by a high paid employee, I&#8217;m talking about a shopping cart for your website that an owner / operator can maintain themselves&#8217; without major headaches or one that&#160;<a href="http://mtspacewebdesign.com/blog/ecommerce-made-easier-with-wordpress/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p>One of the major hurdles of eCommerce, at least in my opinion, is finding a shopping cart that&#8217;s affordable and easily maintained.  And, I don&#8217;t mean maintained by a high paid employee, I&#8217;m talking about a shopping cart for your website that an owner / operator can maintain themselves&#8217; without major headaches or one that requires a refinance to afford.  On that note MT Space has started offering a WordPress compatible shopping cart that is easily maintained without any knowledge of web design or html.  </p>
<p>At a cost of $75 to $100 you can add on a Paypal compatible shopping cart to your WordPress Content Management System and sell with very minimal start up costs.  Also, going with a Paypal Standard payment option means you won&#8217;t have to pay hundreds for an SSL Certificate while still accepting Paypal account payments and credit cards through the Paypal website.  Sounds good?  I think so.  If you&#8217;re interested in cart with your WordPress CMS, contact me today.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/ecommerce-made-easier-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$3.88 a Month Web Hosting!</title>
		<link>http://mtspacewebdesign.com/blog/3-88-a-month-web-hosting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=3-88-a-month-web-hosting</link>
		<comments>http://mtspacewebdesign.com/blog/3-88-a-month-web-hosting/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 11:49:40 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Powweb]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[Web Hosting Deals]]></category>

		<guid isPermaLink="false">http://MTSpacewebdesign.com/?p=226</guid>
		<description><![CDATA[If you&#8217;re looking for a web hosting deal, check out Powweb, the web hosting company I use for all my websites and recommend to all my clients. You Powweb hosting account will have unlimited bandwidth and email accounts, and they&#8217;re WordPress compatible which really works well for my sites since that&#8217;s what I work in.&#160;<a href="http://mtspacewebdesign.com/blog/3-88-a-month-web-hosting/" class="read-more">Continue Reading</a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.powweb.com/join/index.bml?AffID=581553"><img src="http://www.powweb.com/affiliate/banners/529" style="border:0px" alt="affiliate_link"></a></p>
<p>If you&#8217;re looking for a web hosting deal, check out <a href="http://www.powweb.com/join/index.bml?AffID=581553">Powweb</a>, the web hosting company I use for all my websites and recommend to all my clients.  You Powweb hosting account will have unlimited bandwidth and email accounts, and they&#8217;re WordPress compatible which really works well for my sites since that&#8217;s what I work in.  </p>
<p>You&#8217;ll also find that Powweb is having a sale through July offering $3.88 a month web hosting for the first 12 months.  You won&#8217;t find a deal like that very often, so don&#8217;t miss out.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/3-88-a-month-web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Western Mass SEO</title>
		<link>http://mtspacewebdesign.com/blog/western-mass-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=western-mass-seo</link>
		<comments>http://mtspacewebdesign.com/blog/western-mass-seo/#comments</comments>
		<pubDate>Fri, 14 May 2010 19:46:24 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Western Massachusetts SEO]]></category>

		<guid isPermaLink="false">http://MTSpacewebdesign.com/?p=219</guid>
		<description><![CDATA[ Oh yeah, be prepared to pay a couple grand a month as well.  But wait, you say, thats a lot of money?  That's right, which is why I'd personally never go for a SEO company for any of my websites, because they do just fine for free.]]></description>
				<content:encoded><![CDATA[<p>This week one of my clients wanted to know if I ever offer SEO services.  If you&#8217;re not familiar with the term SEO it stands for search engine optimization.  My answer was no, I&#8217;m not really offering SEO services as my main focus is providing WordPress content management systems.  If the explanation of SEO still didn&#8217;t help, here&#8217;s what the <a href="http://en.wikipedia.org/wiki/Search_engine_optimization">Wikipedia Crowd</a> has to say about the subject.  Check it out, it&#8217;s a good read.</p>
<p>Anyhow, back to my story.  After informing my client that I don&#8217;t offer any SEO services for my clients, I got to looking around the net to see what other companies / freelancers are up to.  You should be able to do it as well, just search Google for SEO, search engine optimization, Affordable SEO, and so on.  You&#8217;ll find a billion and one search results, and if you&#8217;re really serious you&#8217;ll contact a company from the top 10 results.  If they can get themselves to the top of a highly competitive racket, with other companies who claim a specialization in SEO chances are they can help your business and it&#8217;s search rankings.</p>
<p>Ok, we&#8217;ve narrowed that down, what&#8217;s next.  Oh yeah, be prepared to pay a couple grand a month as well.  </p>
<p>But wait, you say, thats a lot of money?  </p>
<p>That&#8217;s right, which is why I&#8217;d personally never go for a SEO company for any of my websites, because they do just fine for free.  One of my favorite SEO practices that anyone can do, on their own for free is to populate your site with keyword rich content.  The second tactic I use, at least in the past when I actually had time to actively promote my sites was finding &#8220;do follow&#8221; blogs relevant to my site content.  The last strategy that I employ is clean website coding, which is fairly easy since I&#8217;m quite comfortable editing a WordPress CMS.  Clean coding moves your content further up the page, making it more important in the eyes of search engines.</p>
<p>Utilizing those FREE SEO tactics probably won&#8217;t push you to the first page of any competitive search terms, but will put you on the right track and give your sites free traffic.  Try it and see before you shell out thousands of dollars for an SEO company.</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/western-mass-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress CMS &#8211; What do you get?</title>
		<link>http://mtspacewebdesign.com/blog/wordpress-cms-what-do-you-get/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-cms-what-do-you-get</link>
		<comments>http://mtspacewebdesign.com/blog/wordpress-cms-what-do-you-get/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 13:19:28 +0000</pubDate>
		<dc:creator>AdminTuttle</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Western Massachusetts Web Development]]></category>
		<category><![CDATA[Wordpress CMS]]></category>
		<category><![CDATA[Wordpress Content Management System]]></category>
		<category><![CDATA[Wordpress Website]]></category>

		<guid isPermaLink="false">http://MTSpacewebdesign.com/?p=214</guid>
		<description><![CDATA[...to sum things up: A Wordpress CMS provides a powerful, user friendly website that does take a little knowledge to develop...]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re new to the term WordPress CMS (Content Management System) you&#8217;ve may have asked yourself &#8220;what&#8217;s a WordPress CMS?&#8221; Well, the short answer is a kick ass website platform for beginners or pros.</p>
<p>WordPress was primarily used as a blogging platform; it organized posts, allowed for easy uploading of images or video, provided interactivity for site visitors, had a million and one addons to customize your WordPress blog, and was (and still is) a good source of extra income from paid blog posts &amp; sponsored links (Google Ads, Yahoo Ads, etc.). What pushes WordPress over the top, at least for me, is that no knowledge of web design languages or coding is necessary to maintain the site. The backend admin panel on a WordPress blog functions in a manner similar to a word processor. Sounds nice right?</p>
<p>Recently, a trend has been building using WordPress as a CMS. Now you can use a WordPress engine to power any site, with all the benefits available to blogs. It does take a little more to get a site started on a WordPress CMS due to the fact that you&#8217;ll want your website to be unique. Bloggers using WordPress can find many free themes online for their WordPress blog, but I can almost guarantee that you&#8217;ll find a dozen blogs using the same theme. Not very unique at all.</p>
<p>So, to sum things up: A WordPress CMS provides a powerful, user friendly website that does take a little knowledge to develop, but doesn&#8217;t tie you to a web developer to provide updates. Very Nice!</p>
]]></content:encoded>
			<wfw:commentRss>http://mtspacewebdesign.com/blog/wordpress-cms-what-do-you-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
