<?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>Web and tech stuff</title>
	<atom:link href="http://webandtechstuff.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webandtechstuff.com</link>
	<description></description>
	<lastBuildDate>Tue, 30 Apr 2013 05:37:33 +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>Change the currency symbol from $ to US$ in Woocommerce</title>
		<link>http://webandtechstuff.com/change-the-currency-symbol-from-to-us-in-woocommerce/</link>
		<comments>http://webandtechstuff.com/change-the-currency-symbol-from-to-us-in-woocommerce/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 05:31:33 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=159</guid>
		<description><![CDATA[In Woocommerce, if you want sell in US dollars, you only get the dollar symbol. The same goes if you want to sell in New Zealand or Australian dollars. There is no way to differentiate between them. If you would like to change this so that all references on your site clearly indicate that you [...]]]></description>
				<content:encoded><![CDATA[<p>In Woocommerce, if you want sell in US dollars, you only get the dollar symbol. The same goes if you want to sell in New Zealand or Australian dollars. There is no way to differentiate between them.</p>
<p>If you would like to change this so that all references on your site clearly indicate that you are selling in a particular currency then here&#8217;s how you do this. You can add letters to the currency symbol so that it displays as &#8220;US$&#8221; instead of just &#8220;$&#8221; by placing the following code in your functions.php file.</p>
<ol>
<li>In the code below you need to change the text &#8216;ABC&#8217; to the be currency code that you&#8217;re referring to, for example USD.</li>
<li>In the &#8216;Currency name&#8217; you should write the name that you would like to display in the dropdown in the settings of Woocommerce where you set the currency.</li>
<li>Where you see &#8216;$&#8217; you should change this to whatever you wish to make it, for example: &#8216;US$&#8217;</li>
</ol>
<pre class="brush: php; title: ; notranslate">add_filter( 'woocommerce_currencies', 'add_my_currency' );

function add_my_currency( $currencies ) {

$currencies['ABC'] = __( 'Currency name', 'woocommerce' );

return $currencies;

}

add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2);

function add_my_currency_symbol( $currency_symbol, $currency ) {

switch( $currency ) {

case 'ABC': $currency_symbol = '$'; break;

}

return $currency_symbol;

}</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/change-the-currency-symbol-from-to-us-in-woocommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to hide the caption field from the image editor in WordPress</title>
		<link>http://webandtechstuff.com/how-to-hide-the-caption-field-from-the-image-editor-in-wordpress/</link>
		<comments>http://webandtechstuff.com/how-to-hide-the-caption-field-from-the-image-editor-in-wordpress/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 05:21:58 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[images]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=157</guid>
		<description><![CDATA[Sometimes adding captions to your images in WordPress can throw out your theme. If you&#8217;d like to be able to stop users from adding captions then it&#8217;s very simple to do. Just add the code below to your functions.php file. This won&#8217;t stop existing captions from displaying. It will simply stop the caption field from [...]]]></description>
				<content:encoded><![CDATA[<p>Sometimes adding captions to your images in WordPress can throw out your theme. If you&#8217;d like to be able to stop users from adding captions then it&#8217;s very simple to do. Just add the code below to your functions.php file.</p>
<p>This won&#8217;t stop existing captions from displaying. It will simply stop the caption field from showing in the editor so that captions can&#8217;t be added to any new images that are uploaded.</p>
<pre class="brush: php; title: ; notranslate">// Hides caption field in image editor
add_filter( 'disable_captions', create_function('$a', 'return true;') );</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-hide-the-caption-field-from-the-image-editor-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create an anchor link in WordPress</title>
		<link>http://webandtechstuff.com/how-to-create-an-anchor-link-in-wordpress/</link>
		<comments>http://webandtechstuff.com/how-to-create-an-anchor-link-in-wordpress/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 09:24:08 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=143</guid>
		<description><![CDATA[An anchor link is a link that, instead of just loading the page normally, takes you to a point somewhere further down the page. It&#8217;s pretty simple to do in WordPress and you should be able to master it pretty quickly by following these steps: In the destination page, while in edit mode, click on [...]]]></description>
				<content:encoded><![CDATA[<p>An anchor link is a link that, instead of just loading the page normally, takes you to a point somewhere further down the page. It&#8217;s pretty simple to do in WordPress and you should be able to master it pretty quickly by following these steps:</p>
<ol>
<li>In the <strong>destination page</strong>, while in edit mode, click on the ‘Text’ tab in the top right of the editing area. This will allow you to view some of the page’s code.</li>
<li>Scroll down to the location you’d like to link to and type in the following, using only lower case: &lt;a name=”point1”&gt;&lt;/a&gt;</li>
<li>Replace &#8220;point1&#8243; with a word of your choosing that is meaningful, keeping it short and appropriate.</li>
<li>Double check it &#8211; if you get it even slightly wrong it will cause problems.</li>
<li>Switch back to ‘Visual’ tab.</li>
<li>Hit ‘Publish’.</li>
<li>Now, go to the <strong>page where the link will originate</strong>.</li>
<li><a title="How to create a text link in WordPress" href="http://webandtechstuff.com/how-to-create-a-text-link-in-wordpress/">Create a link as per normal</a>, but include the anchor at the end of the url. Look at the example below carefully as you must follow it exactly and include the slash and hash before your anchor word:</li>
<li>Normal link: http://www.example.com/examplepage/</li>
<li>Anchor link: http://www.example.com/examplepage/#point1</li>
<li>Hit ‘Publish’ and then make sure you view the published page and check it works!</li>
</ol>
<p><strong>Tips:</strong></p>
<p>If you&#8217;ve not used the text editor before here are a couple of tips to bear in mind:</p>
<ul>
<li>The text editor can be unforgiving if you make a mistake so be very careful.</li>
<li>It helps to insert the anchor a line or two higher than the point you’d like to link to. This way the title of the section you link to will appear.</li>
<li>All code in the editor will come in pairs. E.g. &lt;b&gt; followed by &lt;/b&gt;. The second item of the pair always begins with a slash. Don’t put anchors between any of these. Always put them outside of any pairs you see.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-create-an-anchor-link-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a text link in WordPress</title>
		<link>http://webandtechstuff.com/how-to-create-a-text-link-in-wordpress/</link>
		<comments>http://webandtechstuff.com/how-to-create-a-text-link-in-wordpress/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 09:12:07 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=140</guid>
		<description><![CDATA[Inserting a link into a post or page in WordPress is easy. It might not be quite straight forward the first time you do it but you&#8217;ll very quickly get the hang of it. You can start by following these steps: Highlight the text you wish to link Click on the chain icon in the [...]]]></description>
				<content:encoded><![CDATA[<p>Inserting a link into a post or page in WordPress is easy. It might not be quite straight forward the first time you do it but you&#8217;ll very quickly get the hang of it. You can start by following these steps:</p>
<ol>
<li>Highlight the text you wish to link</li>
<li>Click on the chain icon in the tool bar immediately above the text editor area</li>
<li>The box that pops up (see below) will have the &#8220;Url&#8221; field already started with &#8220;http://&#8221;</li>
</ol>
<p><strong>Then either method 1:</strong></p>
<ol>
<li>Click on ‘Or link to existing content’</li>
<li>Search for the page you want to link to and click it (you can type the name of the page in the search field)</li>
<li>You don’t need to do anything else, just click the ‘Add link’ button</li>
</ol>
<p><strong>Or method 2:</strong></p>
<ol>
<li>Delete the &#8220;http://&#8221;</li>
<li>Go to the page you wish to link to and copy the full link from the address bar.</li>
<li>Paste this link into the url field below.</li>
</ol>
<p><strong>Editing existing links:</strong></p>
<ol>
<li>If you want to edit an existing link, then place the cursor in the word that links and click on the chain icon and follow these same steps.</li>
</ol>
<p>IMPORTANT – once you&#8217;ve followed these steps, always go to the published page and check that the link works as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-create-a-text-link-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove the breadcrumb from Woocommerce</title>
		<link>http://webandtechstuff.com/how-to-remove-the-breadcrumb-from-woocommerce/</link>
		<comments>http://webandtechstuff.com/how-to-remove-the-breadcrumb-from-woocommerce/#comments</comments>
		<pubDate>Mon, 08 Apr 2013 05:56:43 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=134</guid>
		<description><![CDATA[Removing the Woocommerce breadcrumb is a simple thing to do. Just add the following code to your functions.php file.]]></description>
				<content:encoded><![CDATA[<p>Removing the Woocommerce breadcrumb is a simple thing to do. Just add the following code to your functions.php file.</p>
<pre class="brush: php; title: ; notranslate">/** Removes Woocommerce breadcrumb */
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-remove-the-breadcrumb-from-woocommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make Woocommerce display 12 products per page</title>
		<link>http://webandtechstuff.com/how-to-make-woocommerce-display-12-products-per-page/</link>
		<comments>http://webandtechstuff.com/how-to-make-woocommerce-display-12-products-per-page/#comments</comments>
		<pubDate>Wed, 03 Apr 2013 03:57:52 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=113</guid>
		<description><![CDATA[By default Woocommerce displays 10 products per page. Considering these are in lines of four, four and two, this seems really odd. Anyway they&#8217;ve provided a way to change this by adding a simple line of code to your functions.php file. The code to add is below and the number &#8217;12&#8242;  is the number of [...]]]></description>
				<content:encoded><![CDATA[<p>By default Woocommerce displays 10 products per page. Considering these are in lines of four, four and two, this seems really odd. Anyway they&#8217;ve provided a way to change this by adding a simple line of code to your functions.php file. The code to add is below and the number &#8217;12&#8242;  is the number of products that will display so you can make that whatever you like:</p>
<pre class="brush: php; title: ; notranslate">add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 12;' ), 20 );</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-make-woocommerce-display-12-products-per-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopify review</title>
		<link>http://webandtechstuff.com/shopify-review/</link>
		<comments>http://webandtechstuff.com/shopify-review/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 05:24:02 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Shopify]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=4</guid>
		<description><![CDATA[Shopify is a third party application that can provide a great shopping experience for your website. I&#8217;ve used it to setup a robust shop that sells around a dozen items, but it can handle a lot more than this. Pros The support is generally pretty good, although it takes them a day or two to [...]]]></description>
				<content:encoded><![CDATA[<p>Shopify is a third party application that can provide a great shopping experience for your website. I&#8217;ve used it to setup a robust shop that sells around a dozen items, but it can handle a lot more than this.</p>
<p><strong>Pros</strong></p>
<ul>
<li>The support is generally pretty good, although it takes them a day or two to respond.</li>
<li>It is a very robust system so you can be confident that it won&#8217;t break easily.</li>
<li>In addition to its ecommerce it provides a reasonable content management system so you can run your whole website here including a blog and other pages. Although it won&#8217;t be ideal for larger sites, just if you want to add a small number of non-shop pages.</li>
<li>There are a number of good themes or templates that you can use, these are normally purchased for around US$100-150.</li>
<li>It provides ready to go integration with a massive range of payment gateways.</li>
<li>A lot of templates are responsive so work well on mobile. The checkout screens actually look better on mobile than they do on the desktop!</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Images load slowly in New Zealand, and presumably in some other countries.</li>
<li>Cost. This will be reasonable for some and not for others since there is a monthly fee and then a commission on all sales. Other systems like Woocommerce for WordPress will probably take a comparable time to implement but have minimal cost, however Woocommerce would require a steeper learning curve.</li>
<li>It&#8217;s difficult to get a real handle on the whole checkout process without purchasing a plan. You can see most of the payment system but you don&#8217;t know exactly how it will work until you&#8217;re purchasing real items.</li>
</ul>
<p><strong>In summary:</strong></p>
<p>I&#8217;d suggest that Shopify is a good solution for a wide range of businesses. I&#8217;d personally use Woocommerce as I&#8217;m more familiar with it, and that&#8217;s important. I also think Woocommerce is much more powerful. But for a novice or someone looking for a straight forward solution that works well out of the box, then Shopify would be a good solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/shopify-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indenting child pages in sidebar widgets in Genesis theme</title>
		<link>http://webandtechstuff.com/indenting-child-pages-in-sidebar-widgets-in-genesis-theme/</link>
		<comments>http://webandtechstuff.com/indenting-child-pages-in-sidebar-widgets-in-genesis-theme/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 05:14:08 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Genesis theme]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=87</guid>
		<description><![CDATA[It took me a while to figure out but this is actually really simple. Just edit your style.css file so that it includes the following]]></description>
				<content:encoded><![CDATA[<p>It took me a while to figure out but this is actually really simple. Just edit your style.css file so that it includes the following</p>
<pre class="brush: css; title: ; notranslate">.sidebar.widget-area ul ul li {
border: none;
margin: 0 0 0 15px;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/indenting-child-pages-in-sidebar-widgets-in-genesis-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing Woocommerce product quantity selectors</title>
		<link>http://webandtechstuff.com/removing-woocommerce-product-quantity-selectors/</link>
		<comments>http://webandtechstuff.com/removing-woocommerce-product-quantity-selectors/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 05:11:17 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=84</guid>
		<description><![CDATA[Do you really need those quantity selectors? Let&#8217;s say you sell books in your store, how many people are really going to order more than one of the same thing? Some will of course, but in the case of the shop I just built, most won&#8217;t so I didn&#8217;t want them to stay there. So [...]]]></description>
				<content:encoded><![CDATA[<p>Do you really need those quantity selectors? Let&#8217;s say you sell books in your store, how many people are really going to order more than one of the same thing? Some will of course, but in the case of the shop I just built, most won&#8217;t so I didn&#8217;t want them to stay there. So how to remove them? Simply add the following CSS to your WordPress theme&#8217;s folder:</p>
<pre class="brush: css; title: ; notranslate">.quantity buttons added {
 display: none;
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/removing-woocommerce-product-quantity-selectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove prices from product listing pages in Woocommerce</title>
		<link>http://webandtechstuff.com/how-to-remove-prices-from-product-listing-pages-in-woocommerce/</link>
		<comments>http://webandtechstuff.com/how-to-remove-prices-from-product-listing-pages-in-woocommerce/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 05:07:30 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://webandtechstuff.com/?p=81</guid>
		<description><![CDATA[If you would like to remove the prices from the product listing pages in Woocommerce then you can do this by adding the following CSS to your style.css file in your WordPress theme&#8217;s folder:]]></description>
				<content:encoded><![CDATA[<p>If you would like to remove the prices from the product listing pages in Woocommerce then you can do this by adding the following CSS to your style.css file in your WordPress theme&#8217;s folder:</p>
<pre class="brush: css; title: ; notranslate">ul.products li.product .price {
 display:none !important;
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://webandtechstuff.com/how-to-remove-prices-from-product-listing-pages-in-woocommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
