<?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>quirm.net &#187; Plugins</title>
	<atom:link href="http://quirm.net/category/wordpress/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://quirm.net</link>
	<description>wordpress &#38; web design</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:39:41 +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>Witty2: A Simple Random Quotes Plugin</title>
		<link>http://quirm.net/2011/10/25/witty2-a-simple-random-quotes-plugin/</link>
		<comments>http://quirm.net/2011/10/25/witty2-a-simple-random-quotes-plugin/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 13:07:24 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3201</guid>
		<description><![CDATA[Years ago, I used a plugin called Witty to display random quotes on one of my blogs. But it was a little crude and required an ability to: Edit theme template files Upload a text file containing your quotes via FTP So, the other day, I decided to update it. Witty2 uses a shortcode, so&#8230;]]></description>
			<content:encoded><![CDATA[<p>Years ago, I used a plugin called Witty to display random quotes on one of my blogs. But it was a little crude and required an ability to:</p>
<ol>
<li>Edit theme template files</li>
<li>Upload a text file containing your quotes via FTP</li>
</ol>
<p>So, the other day, I decided to update it.</p>
<p><span id="more-3201"></span></p>
<p>Witty2 uses a shortcode, so you can add a random quotes to your Posts or Pages on a completely ad-hoc basis. The file containing the quotes is now stored in the plugin folder, so it can be editing via Plugins &rarr; Editor.</p>

<a href='http://quirm.net/2011/10/25/witty2-a-simple-random-quotes-plugin/witty2-editor/' title='Witty2: the quote file'><img width="150" height="114" src="http://quirm.net/wp-content/uploads/2011/10/witty2-editor-150x114.png" class="attachment-thumbnail" alt="Witty2: the quote file" title="Witty2: the quote file" /></a>
<a href='http://quirm.net/2011/10/25/witty2-a-simple-random-quotes-plugin/witty2-shortcode/' title='Witty2: adding the shortcode'><img width="150" height="142" src="http://quirm.net/wp-content/uploads/2011/10/witty2-shortcode-150x142.png" class="attachment-thumbnail" alt="Witty2: adding the shortcode" title="Witty2: adding the shortcode" /></a>

<p>As with the original plugin, it still assumes 1 quote per line but it does allow a sub-set of HTML tags to be used &#8212; specifically <code>br</code>, <code>em</code>, <code>strong</code> and 	<code>cite</code>. The random quote output is generated inside <code>blockquote</code> tags, so you should be able to style it via your theme&#8217;s CSS, if necessary.</p>
<p>To add the shortcode to a template file, use<code> &lt;?php echo do_shortcode('[witty2]');?&gt;</code>.</p>
<p>Enjoy!</p>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/10/25/witty2-a-simple-random-quotes-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Image Title Attribute</title>
		<link>http://quirm.net/2011/10/18/remove-image-title-attribute/</link>
		<comments>http://quirm.net/2011/10/18/remove-image-title-attribute/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:55:49 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3190</guid>
		<description><![CDATA[When you insert an image within WordPress, the core media.php script will add a title attribute to your image markup. In many cases, that&#8217;s one unwanted attribute. Many visually-impaired screen reader users run their software in non-verbose mode &#8212; which ignores all title attributes. This is precisely because most web pages are overloaded with useless&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2011/10/scissors.png" alt="" width="150" height="150" class="alignleft size-full wp-image-3196" /> When you insert an image within WordPress, the core media.php script will add a title attribute to your image markup. In many cases, that&#8217;s<a href="http://wordpress.org/support/topic/minor-request-media-library-remember-no-hyperlink"> one unwanted attribute</a>.</p>
<p>Many visually-impaired screen reader users run their software in non-verbose mode &#8212; which ignores all title attributes. This is precisely because most web pages are overloaded with useless title tags. In screen reader software, a web page full of title attributes equates to way too much unwanted noise. This is especially so when you don&#8217;t bother to give your images nice human-readable titles. </p>
<p>Would you want to read a page littered with meaningless text such as &#8220;dcs3005-674.png&#8221;? Neither do screen reader users.</p>
<p><span id="more-3190"></span></p>
<p>In this respect, WordPress has gotten it wrong. Title attributes should not be added to inserted images by default. There&#8217;s simply no real need for them amongst sighted users and (with luck) many screen reader users won&#8217;t even get to hear them.</p>
<p>If you have important info that you need to relay to screen reader users, then use the Alternate Text field to add a meaningful <code>alt</code> attribute to your images. That&#8217;s what it is there for. If you need to relay additional image information to your sighted readers (including non-mouse users), use the Caption field.</p>
<h3>Installation</h3>
<p>Upload the plugin to your blog, activate it and sit back. The plugin will do the rest. </p>
<h3>Notes</h3>
<p>The plugin is suitable for WordPress 3.2 &#038; above. <ins>Tested in WordPress 3.3.</ins></p>
<p>If you have already inserted images into posts, the plugin will not touch them. You&#8217;ll have to remove the title attribute manually by editing the image markup in each post within the HTML Editor. The plugin will only remove the title attribute from images that you insert <strong>after</strong> it has been activated and then only at the point of insertion. This means that it will have absolutely zero impact on the performance of the front end of your site &#8212; unlike some similar plugins that parse every single post just prior to display.</p>
<h3>Download</h3>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/10/18/remove-image-title-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eJS Twitter</title>
		<link>http://quirm.net/2011/10/04/ejs-twitter/</link>
		<comments>http://quirm.net/2011/10/04/ejs-twitter/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 12:16:13 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3143</guid>
		<description><![CDATA[I was looking for a very simple twitter feed plugin a while back but couldn&#8217;t find one that suited my needs. So I built one&#8230; eJS Twitter adds a Twitter feed widget to your site. It&#8217;s as lightweight as possible with minimal configuration needed to get it up &#038; running. It&#8217;s also compatible with WordPress&#8230;]]></description>
			<content:encoded><![CDATA[<p> I was looking for a very simple twitter feed plugin a while back but couldn&#8217;t find one that suited my needs. So I  built one&#8230;</p>
<p>eJS Twitter adds a Twitter feed widget to your site. It&#8217;s as lightweight as possible with minimal configuration needed to get it up &#038; running.</p>
<p>It&#8217;s also compatible with WordPress 3.2 and translation-ready. Support available via the <a href="http://quirm.net/forum/forum.php?id=9">Quirm.net forums</a>.</p>

<a href='http://quirm.net/2011/10/04/ejs-twitter/ejstwitter-display/' title='eJs Twitter Display'><img width="66" height="150" src="http://quirm.net/wp-content/uploads/2011/10/eJsTwitter-display-66x150.png" class="attachment-thumbnail" alt="eJs Twitter Display" title="eJs Twitter Display" /></a>
<a href='http://quirm.net/2011/10/04/ejs-twitter/ejstwitter-widget/' title='eJs Twitter Widget'><img width="150" height="150" src="http://quirm.net/wp-content/uploads/2011/10/eJsTwitter-widget-150x150.png" class="attachment-thumbnail" alt="eJs Twitter Settings" title="eJs Twitter Widget" /></a>

<p>Enjoy!</p>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/10/04/ejs-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What You Need To Know For eShop</title>
		<link>http://quirm.net/2011/09/23/what-you-need-to-know-for-eshop/</link>
		<comments>http://quirm.net/2011/09/23/what-you-need-to-know-for-eshop/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 14:40:07 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[eShop]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=3096</guid>
		<description><![CDATA[eShop &#8211; the WordPress eShop ecommerce plugin has fairly extensive documentation but there is a lot you can do before you even install the plugin. Answering and checking off the following question before you start configuring eShop should make the eShop set-up process a little easier for you. Is Your Merchant Gateway eShop Compatible? There&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2009/09/shopping-cart.png" alt="" title="Shopping Cart" width="150" height="150" class="alignleft size-full wp-image-1335" /> <a href="http://wordpress.org/extend/plugins/eshop/">eShop</a> &#8211; the WordPress eShop ecommerce plugin has fairly <a href="http://quirm.net/wiki/eshop/">extensive documentation</a> but there is a lot you can do <strong>before</strong> you even install the plugin.</p>
<p>Answering and checking off the following question before you start configuring eShop should make the eShop set-up process a little easier for you.</p>
<p><span id="more-3096"></span></p>
<h3 style="clear:left;">Is Your Merchant Gateway eShop Compatible?</h3>
<p>There are a number of merchant gateways that you can use with eShop:</p>
<ul>
<li>Authorize.net</li>
<li>eProcessingNetwork</li>
<li>iDeal Lite</li>
<li>PayPal</li>
<li>Payson</li>
<li>Ogone</li>
<li>webtopay</li>
</ul>
<p>But you may need to make changes to your gateway account to ensure that it is compatible with eShop.<br />
<a href="http://quirm.net/wiki/eshop/setting-up-merchant-gateways/">Check your merchant gateway</a></p>
<h3>Do You Have Your Merchant Gateway Details?</h3>
<p>You will need all of the necessary details for your chosen merchant gateway &#8211; e.g. if you&#8217;re using PayPal, you will need the email address that you use on your PayPal account.<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/merchant-gateways/">Setting up eShop merchant gateways</a></p>
<h3>Where Will You Be Shipping To?</h3>
<p>Will you be selling in your own country only (i.e. by State/County/Province)? Or internationally (i.e. by Country)?<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/shipping-rates/#Countries">Defining your shipping locations</a></p>
<h3>Have You Zoned Your Delivery Locations?</h3>
<p>The cost of shipping an item varies according to its destination. eShop allows you to group different delivery locations into &#8220;zones&#8221; &#038; apply different charges accordingly. You can have up to 9 zones.<br />
Have you divided your shipping locations in 1 or more groups &#8211; called &#8220;zones&#8221;<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/shipping-rates/#Zones">What are shipping zones?</a></p>
<h3>Have You Broken Your Products Down Into Shipping Classes?</h3>
<p>The cost of shipping an item can also vary according to its weight, size, cost or fragility. eShop allows you to define up to 5 shipping classes to accommodate these differences with the 6th reserved for free shipping.<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/shipping-rates/#Shipping-Classes">What are shipping classes?</a></p>
<h3>What Are Your Shipping Costs?</h3>
<p>You should have worked out all of your shipping charges and have determined how to apply them.<br />
Will you charge for the first item based on delivery zone &#038; shipping class with a reduced cost for additional items (Method 1)?<br />
Will you charge for the each item based on delivery zone &#038; shipping class with no reduction for additional items (Method 2)?<br />
Will you charge a flat rate based on delivery zone only (Method 3)?<br />
Will you charge based on delivery zone &#038; product weight (Method 4)?<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/shipping-rates/#Shipping-Rate-Calculations">Calculating shipping</a></p>
<h3>Will You Be Applying Tax?</h3>
<p>If you will be applying tax to products &#8211; such as VAT or sales tax &#8211; you will need details of what tax to apply and when. You also need to decide if tax will also be applied to shipping charges.<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/configuration/sales-tax/">Setting up sales tax</a></p>
<h3>Will Your Products Offer Choices?</h3>
<p>eShop includes option sets that allow you to add customer-selectable choices to your products. What options can customers choose from when purchasing one of your products? Different sizes? Different colours? Are some colours more expensive? You can set an additional price &#038; weight for each option within a set.<br />
<a href="http://quirm.net/wiki/eshop/setting-up-using-eshop/option-sets/">Using option sets</a></p>
<h3>Do You Have All The Details And Images For A Single Product?</h3>
<p>You will need all of the text plus at least 1 image for a sample product. You also need to be able to set it&#8217;s price, shipping class, options set(s) and tax rates based on your answers to the questions above. This exercise will help you get a handle on how to set up eShop to suit your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/09/23/what-you-need-to-know-for-eshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eCookie Warning Plugin</title>
		<link>http://quirm.net/2011/08/09/ecookie-warning-plugin/</link>
		<comments>http://quirm.net/2011/08/09/ecookie-warning-plugin/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 15:33:28 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2900</guid>
		<description><![CDATA[There has been some concern raised about the new European Union regulations regarding cookies and how this might impact upon WordPress. One of the area where this legislation might impact upon WordPress sites is at the point of registration when a cookie is set on the new user&#8217;s machine. In order to address the problem,&#8230;]]></description>
			<content:encoded><![CDATA[<p>There has been <a href="http://wordpress.org/support/topic/how-can-we-control-cookies-with-new-eu-legislation/">some concern raised</a> about the new European Union regulations regarding cookies and how this might impact upon WordPress.</p>
<p>One of the area where this legislation <em>might</em> impact upon WordPress sites is at the point of registration when a cookie is set on the new user&#8217;s machine. In order to address the problem, I&#8217;ve put together a quick plugin &#8211; <a href="http://quirm.net/download/82/">eCookie Warning</a> &#8211; which adds a warning to the WordPress Registration form.</p>
<p>Unfortunately, I&#8217;m just about to start my summer vacation, so if you do have any comments on the plugin, please save them until I get back in about 10 days time. In the meantime &#8211; enjoy!</p>
<div id="attachment_2903" class="wp-caption alignleft" style="width: 116px"><a href="http://quirm.net/2011/08/09/ecookie-warning-plugin/ecookie-warning/" rel="attachment wp-att-2903"><img src="http://quirm.net/wp-content/uploads/2011/08/ecookie-warning-106x150.jpg" alt="Screenshot" title="eCookie Warning" width="106" height="150" class="size-thumbnail wp-image-2903" /></a><p class="wp-caption-text">Registration</p></div>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/08/09/ecookie-warning-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eShop Extras</title>
		<link>http://quirm.net/2011/04/28/eshop-extras/</link>
		<comments>http://quirm.net/2011/04/28/eshop-extras/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 11:08:00 +0000</pubDate>
		<dc:creator>Mel</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eShop]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2483</guid>
		<description><![CDATA[We&#8217;ve recently released an example companion plugin for eShop that will add an additional text field to your Checkout page between the Mailing and Shipping forms. Download eShop Extras]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve recently released an example companion plugin for eShop that will add an additional text field to your Checkout page between the Mailing and Shipping forms.</p>
<p><a href="http://quirm.net/download/74/">Download eShop Extras</a></p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/04/28/eshop-extras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eShop 6.1.x translatable pot file</title>
		<link>http://quirm.net/2011/01/25/eshop-6-1-x-translatable-pot-file/</link>
		<comments>http://quirm.net/2011/01/25/eshop-6-1-x-translatable-pot-file/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 20:18:33 +0000</pubDate>
		<dc:creator>rich</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eShop]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2374</guid>
		<description><![CDATA[I&#8217;ve just updated the pot file ready for the next release, so if you are maintaining a translation of eShop please download and translate asap. eShop is due for release in a week, providing no major bugs are found. If you are maintaining a translation, why not mention it on the forums, and specifically in&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just updated the pot file ready for the next release, so if you are maintaining a translation of eShop please download and translate asap. eShop is due for release in a week, providing no major bugs are found.</p>
<p>If you are maintaining a translation, why not mention it on the forums, and specifically in this thread: <a href="http://quirm.net/forum/topic.php?id=2512">Available Translations for eShop</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/01/25/eshop-6-1-x-translatable-pot-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eShop Version 6.1.0 now ready for testing</title>
		<link>http://quirm.net/2011/01/12/eshop-version-6-1-0-now-ready-for-testing/</link>
		<comments>http://quirm.net/2011/01/12/eshop-version-6-1-0-now-ready-for-testing/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 10:53:17 +0000</pubDate>
		<dc:creator>rich</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eShop]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2357</guid>
		<description><![CDATA[WARNING Back up your database before upgrading NEW Sales Tax can now be added. (settable per product option after &#8216;tax bands&#8217; has been entered). NEW Extra Stats. NEW Downloads can now have &#8216;collections&#8217;. NEW Sale Prices for main options, shortcodes adapted to take price = yes, sale or both. FIXED/Added Secondary address box for Paypal,&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://quirm.net/wp-content/uploads/2008/10/keyboard.jpg" alt="" title="" width="150" height="113" class="alignright size-full wp-image-146" />
<ul>
<li><strong>WARNING</strong> 	<em>Back up your database before upgrading</em></li>
<li><strong>NEW</strong> 	<em>Sales Tax</em> can now be added. (settable per product option after &#8216;tax bands&#8217; has been entered).</li>
<li><strong>NEW</strong> 	Extra Stats.</li>
<li><strong>NEW</strong> 	Downloads can now have &#8216;collections&#8217;.</li>
<li><strong>NEW</strong> 	Sale Prices for main options, shortcodes adapted to take price = yes, sale or both.</li>
<li><strong>FIXED/Added</strong> Secondary address box for Paypal, finally allowing non main account email addresses to be used!</li>
<li><strong>fixed</strong> 	small bug with listing on the downloads page.</li>
<li><strong>fixed</strong> 	slashes issue with option sets</li>
<li><strong>fixed</strong> 	eshop_welcome shortcode now picks up loged in users display name if set.</li>
<li><strong>fixed</strong> 	slashes appearing in emails.(hopefully)</li>
<li><strong>fixed</strong> 	eshop_details shortcode now functions correctly.</li>
<li><strong>fixed</strong> 	checkout losing chosen State/County/Province, props VK.</li>
<li><strong>fixed</strong> 	many small bugs.</li>
<li><strong>added</strong> 	generic eshop-widget class to eShop widgets</li>
<li><strong>added</strong> 	filter for the eshop_files_directory</li>
<li><strong>added</strong> 	check on checkout page, if memebersonly is set as an attribute, then you can use this format to display a message: [eshop_show_checkout membersonly='yes']please show me[/eshop_show_checkout]</li>
<li><strong>added</strong> 	number of decimals is now translatable.</li>
<li><strong>added</strong> 	extra CSS hooks to checkout confirmation page.</li>
<li><strong>added</strong> 	action eshop_sold_product which is sent the post id of the product that was sold.</li>
<li><strong>added</strong> 	Shipping by weight now allows you to choose between states/counties/province and countries per mode.</li>
<li><strong>added</strong> 	missing strings for translations</li>
<li><strong>added</strong> 	classes for styling in various places</li>
<li><strong>changed</strong> 	Discount Codes are no longer case sensitive</li>
<li><strong>changed</strong> 	removed _ from filenames and replaced with -, easier for developers.</li>
<li><strong>Note</strong> 	after upgrading you may need to refresh the page due to the change above.</li>
</ul>
<p><em>Note</em> This version has been tested with Paypal, Cash, Bank, Webtopay and Authorize.net merchant gateways, and all seemed to work OK in test mode. The other gateways have not had a full test, but should work without issue.</p>
<p>For testing please download from: <a href="http://downloads.wordpress.org/plugin/eshop.zip">http://downloads.wordpress.org/plugin/eshop.zip</a></p>
<p>Please keep all feedback/bug reports in <a href="http://quirm.net/forum/topic.php?id=2564">this thread</a> on the forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/01/12/eshop-version-6-1-0-now-ready-for-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eShop progress report 2</title>
		<link>http://quirm.net/2011/01/07/eshop-progress-report-2/</link>
		<comments>http://quirm.net/2011/01/07/eshop-progress-report-2/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 16:36:39 +0000</pubDate>
		<dc:creator>rich</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eShop]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2353</guid>
		<description><![CDATA[I have just 3 things left to code, testing has gone very well and I&#8217;m currently ahead of schedule. This release will need a lot testing from actual users before it can be fully released though. So to whet your appetites here is the list of current changes: WARNING Back up your database before upgrading&#8230;]]></description>
			<content:encoded><![CDATA[<p>I have just 3 things left to code, testing has gone very well and I&#8217;m currently ahead of schedule.  This release will need a lot testing from actual users before it can be fully released though. So to whet your appetites here is the list of current changes:</p>
<ul>
<li><em>WARNING</em> <strong>Back up your database before upgrading</strong></li>
<li><em>NEW</em> <strong>Sales Tax</strong> can now be added. (settable per product option after &#8216;tax bands&#8217; has been entered).</li>
<li><em>NEW</em> Extra Stats.</li>
<li><em>FIXED/Added</em> Secondary address box for Paypal, finally allowing non main account email addresses to be used!</li>
<li><em>fixed</em> 	small bug with listing on the downloads page.</li>
<li><em>fixed</em> 	slashes issue with option sets</li>
<li><em>fixed</em> 	eshop_welcome shortcode now picks up loged in users display name if set.</li>
<li><em>fixed</em> 	slashes appearing in emails.(hopefully)</li>
<li><em>added</em> 	generic eshop-widget class to eShop widgets</li>
<li><em>added</em> 	filter for the eshop_files_directory</li>
<li><em>added</em> 	check on checkout page, if memebersonly is set as an attribute, then you can use this format to display a message: [eshop_show_checkout membersonly='yes']please show me[/eshop_show_checkout]</li>
<li><em>added</em> 	number of decimals is now translatable.</li>
<li><em>added</em> 	extra CSS hooks to checkout confirmation page.</li>
<li><em>added</em> 	action eshop_sold_product which is sent the post id of the product that was sold.</li>
<li><em>added</em> 	Shipping by weight now allows you to choose between states/counties/province and countries per mode.</li>
<li><em>added</em> 	missing strings for translations</li>
<li><em>changed</em> 	removed _ from filenames and replaced with -, easier for developers.</li>
<li><em>changed</em> 	Discount Codes are no longer case sensitive</li>
<li><em>Note</em> after upgrading you may need to refresh the page due to the change above.</li>
</ul>
<p>and yes, you read it right &#8211; Tax is coming to eShop.</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/01/07/eshop-progress-report-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eShop progress report</title>
		<link>http://quirm.net/2011/01/01/eshop-progress-report/</link>
		<comments>http://quirm.net/2011/01/01/eshop-progress-report/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 16:37:05 +0000</pubDate>
		<dc:creator>rich</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[eShop]]></category>

		<guid isPermaLink="false">http://quirm.net/?p=2345</guid>
		<description><![CDATA[While a lot of you may be getting over last night, Happy New Year by the way, I have begun work on a large update for eShop today. I&#8217;m not going to say what is in it, in case things go very very wrong, but I have made a start. I had already completed one&#8230;]]></description>
			<content:encoded><![CDATA[<p>While a lot of you may be getting over last night, Happy New Year by the way, I have begun work on a large update for eShop today.</p>
<p>I&#8217;m not going to say what is in it, in case things go very very wrong, but I have made a start. I had already completed one phase before Christmas, and have 5 more to go. The one I&#8217;m currently working on is the biggie, and one that I think a lot of you will like. The others, although minor in comparison, will include some smaller often asked for features, if I can manage to code them that is.</p>
<p>My target date is the end of January. Nearer the time I will put a call out for testers. I will not be able to release this version until I have had feedback from testers, but don&#8217;t ask yet, I&#8217;ll put a call out nearer the time.</p>
<p>Wishing you all good selling this year ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://quirm.net/2011/01/01/eshop-progress-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

