<?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>Wizzy Wig Design</title>
	<atom:link href="http://wizzywigdesign.com/feed" rel="self" type="application/rss+xml" />
	<link>http://wizzywigdesign.com</link>
	<description>Minneapolis Web Design for Small Businesses</description>
	<lastBuildDate>Tue, 21 Feb 2012 23:43:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>AM950 Radio</title>
		<link>http://wizzywigdesign.com/am950-radio</link>
		<comments>http://wizzywigdesign.com/am950-radio#comments</comments>
		<pubDate>Tue, 21 Feb 2012 23:41:56 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Recent-Work]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=455</guid>
		<description><![CDATA[Our most complicated WordPress site to date! Features two custom-written plugins including a dynamically updated show schedule with &#8220;on air now&#8221; functionality. Also features rotating sidebar ads, sidebar poll and live streaming. Take it for a spin at am950radio.com]]></description>
			<content:encoded><![CDATA[<p>Our most complicated WordPress site to date! Features two custom-written plugins including a dynamically updated show schedule with &#8220;on air now&#8221; functionality. Also features rotating sidebar ads, sidebar poll and live streaming. Take it for a spin at <a href="http://am950radio.com" target="_blank">am950radio.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/am950-radio/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vertically align something to the bottom of the container element</title>
		<link>http://wizzywigdesign.com/vertically-align-something-to-the-bottom-of-the-container-element</link>
		<comments>http://wizzywigdesign.com/vertically-align-something-to-the-bottom-of-the-container-element#comments</comments>
		<pubDate>Thu, 02 Feb 2012 20:03:25 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Wordpress Tips, Tricks and Reusable Bits of Code]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=450</guid>
		<description><![CDATA[this will snap an element to the bottom of the parent element. first, make sure the parent element is set to {position:relative} then set the child element to {position:fixed; bottom:0;}]]></description>
			<content:encoded><![CDATA[<p>this will snap an element to the bottom of the parent element.<br />
first, make sure the parent element is set to {position:relative}</p>
<p>then set the child element to   {position:fixed;  bottom:0;}</p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/vertically-align-something-to-the-bottom-of-the-container-element/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load plugin scripts only on pages that need them</title>
		<link>http://wizzywigdesign.com/load-plugin-scripts-only-on-pages-that-need-them</link>
		<comments>http://wizzywigdesign.com/load-plugin-scripts-only-on-pages-that-need-them#comments</comments>
		<pubDate>Thu, 26 Jan 2012 19:14:22 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Wordpress Tips, Tricks and Reusable Bits of Code]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=447</guid>
		<description><![CDATA[To disable messy plugin from loading on every page of your site (just on the pages that need it)&#8230; First find the handle &#8212; Open the php for the script you want to turn off and look for where it &#8230; <a href="http://wizzywigdesign.com/load-plugin-scripts-only-on-pages-that-need-them">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>To disable messy plugin from loading on every page of your site (just on the pages that need it)&#8230;</h3>
<p>First find the handle &#8212; Open the php for the script you want to turn off and look for where it adds itself via enqueue_script<br />
<code>wp_enqueue_script(‘wpng-calendar‘, get_bloginfo(‘wpurl’) . ‘/wp-content/plugins/wpng-calendar/js/functions.js’, array(‘date-js’), ’0.85′);</code></p>
<p>(if the plugin doesn&#8217;t use enqueue_script then you may be out of luck)</p>
<p>Then add this to your functions.php file:<br />
<code>add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );<br />
function my_deregister_javascript() {<br />
if ( !is_page('Events') ) {<br />
wp_deregister_script( 'wpng-calendar' );<br />
wp_deregister_script( 'date-js' );<br />
wp_deregister_script( 'thickbox-js' );<br />
wp_deregister_script( 'jquery-js' );<br />
wp_deregister_script( 'wiky-js' );<br />
}<br />
}</code></p>
<p>If you need to show the plugin on  multiple pages, change the<em> if</em> line to this:</p>
<p><code>if ( !is_page(array(2,'events','about-us')) ) {</code></p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/load-plugin-scripts-only-on-pages-that-need-them/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Look Ink</title>
		<link>http://wizzywigdesign.com/good-look-ink-2</link>
		<comments>http://wizzywigdesign.com/good-look-ink-2#comments</comments>
		<pubDate>Sat, 19 Nov 2011 15:41:09 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Recent-Work]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=436</guid>
		<description><![CDATA[A complete web site overhaul for the rapidly growing Edina company Good Look Ink. Features gallery and testimonial sliders, a video gallery, and subtle jquery effects throughout.]]></description>
			<content:encoded><![CDATA[<p>A complete web site overhaul for the rapidly growing Edina company <a title="Good Look Ink hair replication" href="http://www.goodlookink.com" target="_blank">Good Look Ink</a>. Features gallery and testimonial sliders, a video gallery, and subtle jquery effects throughout.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/good-look-ink-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lane Self Defense</title>
		<link>http://wizzywigdesign.com/lane-self-defense</link>
		<comments>http://wizzywigdesign.com/lane-self-defense#comments</comments>
		<pubDate>Fri, 18 Nov 2011 15:48:35 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=440</guid>
		<description><![CDATA[This is a 300+ product e-commerce site for a self defense company. The site was previously hosted for him with a system that could not make global changes, so that he had to manually change each page every time! The &#8230; <a href="http://wizzywigdesign.com/lane-self-defense">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a 300+ product e-commerce site for a self defense company. The site was previously hosted for him with a system that could not make global changes, so that he had to manually change each page every time! The new site uses WordPress and makes updates and inventory-management easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/lane-self-defense/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suburb Savvy Homes</title>
		<link>http://wizzywigdesign.com/suburb-savvy-homes</link>
		<comments>http://wizzywigdesign.com/suburb-savvy-homes#comments</comments>
		<pubDate>Sat, 25 Jun 2011 19:54:08 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Recent-Work]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=428</guid>
		<description><![CDATA[A classic clean-style web site for a local realtor, Suburb Savvy Homes. Home page features a variety of current items such as homeowner resources and current properties for sale.]]></description>
			<content:encoded><![CDATA[<p>A classic clean-style web site for a local realtor, <a title="go to suburb savvy homes website" href="http://suburbsavvyhomes.com" target="_blank">Suburb Savvy Homes</a>. Home page features a variety of current items such as homeowner resources and current properties for sale.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/suburb-savvy-homes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our Home Tea</title>
		<link>http://wizzywigdesign.com/our-home-tea</link>
		<comments>http://wizzywigdesign.com/our-home-tea#comments</comments>
		<pubDate>Sat, 18 Jun 2011 02:53:28 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Recent-Work]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=412</guid>
		<description><![CDATA[This e-commerce site replaces an outdated zen cart installation. We used wordpress and the shopp plugin to display all of his products. It also connects to the US postal service API to get real time shipping rates. Go check it &#8230; <a href="http://wizzywigdesign.com/our-home-tea">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This e-commerce site replaces an outdated zen cart installation. We used wordpress and the shopp plugin to display all of his products. It also connects to the US postal service API to get real time shipping rates. Go check it out at <a title="Our Home Tea" href="http://www.ourhometea.com" target="_blank">ourhometea.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/our-home-tea/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Tea Garden</title>
		<link>http://wizzywigdesign.com/the-tea-garden-3</link>
		<comments>http://wizzywigdesign.com/the-tea-garden-3#comments</comments>
		<pubDate>Fri, 17 Jun 2011 23:55:08 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=406</guid>
		<description><![CDATA[Since the Tea Garden changed their official look with the launch of their new website, we changed the look of their print ads as well. New photography is now featured, as well as the new colors.]]></description>
			<content:encoded><![CDATA[<p>Since the Tea Garden changed their official look with the launch of their new website, we changed the look of their print ads as well. New photography is now featured, as well as the new colors.</p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/the-tea-garden-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Darolyn</title>
		<link>http://wizzywigdesign.com/darolyn</link>
		<comments>http://wizzywigdesign.com/darolyn#comments</comments>
		<pubDate>Wed, 01 Jun 2011 15:15:38 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=392</guid>
		<description><![CDATA[&#8220;Thank you, Barb, for the exemplary job you did in helping me establish a new website for my consulting company. I appreciated that you took time to listen and to offer feedback. Visitors to the site have commented that it &#8230; <a href="http://wizzywigdesign.com/darolyn">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&#8220;Thank you, Barb, for the exemplary job you did in helping me establish a new website for my consulting company.  I appreciated that you took time to listen and to offer feedback.  Visitors to the site have commented that it is fresh, crisp, and easy to navigate.</p>
<p>I appreciated your professionalism, patience, the tutorial support, and how you worked efficiently.  You were able to bring everything together quickly and within my budget.  I will continue to send referrals your way, and I look forward to calling upon your expertise as needed.  You are fantastic to work with!&#8221;</p>
<p>Sincerely, Darolyn Gray,<br />
President, Urban Wheelhouse.<br />
<a href="http://www.urbanwheelhouse.com" target="_blank">UrbanWheelhouse.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/darolyn/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deeper Well Publishing</title>
		<link>http://wizzywigdesign.com/deeper-well-publishing</link>
		<comments>http://wizzywigdesign.com/deeper-well-publishing#comments</comments>
		<pubDate>Sun, 29 May 2011 15:00:19 +0000</pubDate>
		<dc:creator>barbara</dc:creator>
				<category><![CDATA[Logo Design]]></category>

		<guid isPermaLink="false">http://wizzywigdesign.com/?p=386</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://wizzywigdesign.com/deeper-well-publishing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

