<?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>&#34;Chrome Bright&#34;</title>
	<atom:link href="http://www.chromebright.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chromebright.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 22:35:12 +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>Override WordPress Function register_sidebar In Child Theme</title>
		<link>http://www.chromebright.com/override-wordpress-function-register_sidebar-in-child-theme/</link>
		<comments>http://www.chromebright.com/override-wordpress-function-register_sidebar-in-child-theme/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 22:32:51 +0000</pubDate>
		<dc:creator>kkapaloski</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.chromebright.com/?p=458</guid>
		<description><![CDATA[I was trying to adjust the sidebar header tags recently on a client&#8217;s website. The site is a wordpress site and the theme (Titan) was wrapping all of the widget titles in &#60;h2&#62; tags. Since h2 tags can help search &#8230; <a href="http://www.chromebright.com/override-wordpress-function-register_sidebar-in-child-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was trying to adjust the sidebar header tags recently on a client&#8217;s website. The site is a wordpress site and the theme (<a href="http://thethemefoundry.com/titan/">Titan</a>) was wrapping all of the widget titles in <code>&lt;h2&gt;</code> tags. Since h2 tags can help search engines determine what your pages are about, wrapping the titles of the sidebar in them isn&#8217;t really indicative of individual page content. I wanted to use h2 tags for each post when they were relevant and wanted to remove them from the sidebar widget titles.</p>
<p>Initially I thought this would be simple since I could just edit the sidebar.php file where the header tags were wrapping the output. So I went about doing that like this:</p>
<p><a href="http://www.chromebright.com/wp-content/uploads/2012/01/Sidebar-Edit.jpg"><img class="alignleft size-full wp-image-465" title="Sidebar-Edit" src="http://www.chromebright.com/wp-content/uploads/2012/01/Sidebar-Edit.jpg" alt="Editing sidebar.php" width="1000" height="70" /></a></p>
<p>&nbsp;</p>
<p>However, when I went to see the output the header tags were still h2 tags. I spent a while racking my brain and looking all over for ways to change this. I did everything from removing the entire sidebar by commenting out the code to see if was output elsewhere (it wasn&#8217;t).</p>
<h2>Function In Parent Theme Overriding Child Theme Function</h2>
<p>Eventually I figured out that there was a function overriding this causing the tags to be h2 tags after considerable digging. <a href="http://wordpress.org/support/topic/chenging-titles-font-from-h2-to-h4-only-in-the-sidebar">This thread</a> on the wordpress forums, was very helpful in initially figuring this out. The file was actually not even titled functions.php which if I was very familiar with the Titan theme would probably have known but since it was in the functions directory. The file was actually called titan-extend.php and located. The file is located in titan_pro/functions/titan-extend.php. I tried editing the file directly just to make sure and sure enough, that was it. Here is what it looked like:</p>
<p><a href="http://www.chromebright.com/wp-content/uploads/2012/01/Functions-Edit.jpg"><img class="alignleft size-full wp-image-467" title="Functions-Edit" src="http://www.chromebright.com/wp-content/uploads/2012/01/Functions-Edit.jpg" alt="Editing functions screenshot" width="503" height="62" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>Adjusting Parent Theme and Child Theme Loading Order</h2>
<p>Once I found the function that was causing this, I figured I could edit the functions file in the child theme and would be all set. So I went ahead and did that, but the child function wasn&#8217;t overriding the parent function. I realized that the child function would be loaded first and then the parent function loaded so that the function in the parent theme would override the child theme function. I found this post that was very helpful in starting this process: <a href="http://venutip.com/content/right-way-override-theme-functions">Helpful post for overriding functions</a> but that didn&#8217;t completely address the issue since the child theme was loading first and the parent theme would override it. In order to address this, I had to have wordpress load the parent function first and then <a href="http://codex.wordpress.org/Function_Reference/unregister_sidebar">unregister the function</a> controlling this and then load the child functions. I finally figured it all out and brought it together with the following code:</p>
<p><a href="http://www.chromebright.com/wp-content/uploads/2012/01/Screen-shot-2012-01-21-at-3.25.48-PM.png"><img class="alignleft size-full wp-image-477" title="Screen shot 2012-01-21 at 3.25.48 PM" src="http://www.chromebright.com/wp-content/uploads/2012/01/Screen-shot-2012-01-21-at-3.25.48-PM.png" alt="" width="1055" height="304" /></a></p>
<p>I had no idea when I first wanted to make this simple change that it would be so involved, but now I do and can reference this for future similar issues. I hope it is helpful for anyone else that finds themselves in this situation with their wordpress theme or if they are using the Titan theme.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chromebright.com/override-wordpress-function-register_sidebar-in-child-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select Every Nth Row Excel</title>
		<link>http://www.chromebright.com/select-every-nth-row-excel/</link>
		<comments>http://www.chromebright.com/select-every-nth-row-excel/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 23:28:53 +0000</pubDate>
		<dc:creator>kkapaloski</dc:creator>
				<category><![CDATA[Excel Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.chromebright.com/?p=438</guid>
		<description><![CDATA[In working with spreadsheet, there are a myriad of techniques that can accomplish things with large amounts of data. This one comes up when you want to select every nth row in a range of data to format it similarly &#8230; <a href="http://www.chromebright.com/select-every-nth-row-excel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In working with spreadsheet, there are a myriad of techniques that can accomplish things with large amounts of data. This one comes up when you want to select every nth row in a range of data to format it similarly or for other reasons. </p>
<p>The trick is pretty straightforward and involves filtering the data to only show the rows that you want to select. I will try and add the full instructions at some point, but for now it can be found here: <a href="http://www.lytebyte.com/2009/06/02/how-to-select-every-nth-row-in-excel/">http://www.lytebyte.com/2009/06/02/how-to-select-every-nth-row-in-excel/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chromebright.com/select-every-nth-row-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 E Commerce Conversion Improvement Tips</title>
		<link>http://www.chromebright.com/e-commerce-conversion-improvement-tips/</link>
		<comments>http://www.chromebright.com/e-commerce-conversion-improvement-tips/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:12:25 +0000</pubDate>
		<dc:creator>kkapaloski</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.chromebright.com/?p=218</guid>
		<description><![CDATA[Conversion on the internet is a difficult thing and constant effort is required to improve it. There are many key things that need to be in place. Some of the major components to successful conversion come down to the design &#8230; <a href="http://www.chromebright.com/e-commerce-conversion-improvement-tips/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Conversion on the internet is a difficult thing and constant effort is required to improve it. There are many key things that need to be in place. Some of the major components to successful conversion come down to the design of the site and how professional, secure and easy it is to navigate. Some of the other factors are company policies and procedures.</p>
<p>Here are some things that are a start:</p>
<p>   1.  Make it easy to contact you to reinforce confidence. Have phone numbers and other contact methods prominent.<br />
   2. Visibly show secure buttons and logos as much and as large as possible to instill secure shopping confidence. It needs to be on as many pages as possible and obvious but especially on the checkout page.<br />
   3. Use the word &#8220;secure&#8221; on the checkout button to reinforce confidence.<br />
   4. Make the checkout process as simple as possible with as few steps possible (can&#8217;t be reinforced enough).<br />
   5. Allow people to buy things without creating an account.<br />
   6. Make it clear what you do with personal information. Give a brief synopsis in checkout that you will not sell or give out their email or contact them without consent.<br />
   7. Make your shipping charges obvious and easy to find. If you offer free shipping over a certain amount make this absolutely clear.<br />
   8. On checkout, make the shipping options clear.<br />
   9. Offer as many payment options as possible.<br />
  10. Offer discounts and promote these heavily.<br />
  11. Cross sell on checkout.</p>
<p>These are just some basic things to work toward implementing. There are many, many more things to implement some are much more complicated than others. This list is a good starting point though.</p>
<p>Something you should try if you haven&#8217;t tried before. Go to your site and pretend you are the customer and try to buy something. Go through the entire process and see what difficulties you encounter or things you would look for. Then look at your competitors and the people at the top of the e commerce game like http://www.amazon.com/ and do the same thing and compare the process. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.chromebright.com/e-commerce-conversion-improvement-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing Google Merchant Center Products</title>
		<link>http://www.chromebright.com/viewing-google-merchant-center-products/</link>
		<comments>http://www.chromebright.com/viewing-google-merchant-center-products/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:10:10 +0000</pubDate>
		<dc:creator>kkapaloski</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.chromebright.com/?p=283</guid>
		<description><![CDATA[This is a handy trick to view all of your Google Merchant Center products from Google Product search by entering this URL into your browser: http://www.google.com/products?authorid=[your Account ID] Replace [your Account ID] above with your actual Account ID located in &#8230; <a href="http://www.chromebright.com/viewing-google-merchant-center-products/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a handy trick to view all of your Google Merchant Center products from Google Product search by entering this URL into your browser:</p>
<p>http://www.google.com/products?authorid=[your Account ID]</p>
<p><em>Replace [your Account ID] above with your actual Account ID located in the top-left corner, next to your company name.</em></p>
<p>Full instructions, explanation and FAQ here: <a title="View Google Merchant Center Products" href="http://www.google.com/support/merchants/bin/answer.py?hl=en&amp;answer=188488">http://www.google.com/support/merchants/bin/answer.py?hl=en&amp;answer=188488</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chromebright.com/viewing-google-merchant-center-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X Cart Short Description Display On Product Pages</title>
		<link>http://www.chromebright.com/x-cart-short-description-display/</link>
		<comments>http://www.chromebright.com/x-cart-short-description-display/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:04:10 +0000</pubDate>
		<dc:creator>kkapaloski</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.chromebright.com/?p=408</guid>
		<description><![CDATA[In X Cart, the Short Description doesn&#8217;t display if the Detailed Description is populated. I had a client who wanted the short description and the detailed description to display. In order to accomplish this, the template that contains the description &#8230; <a href="http://www.chromebright.com/x-cart-short-description-display/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In X Cart, the <em>Short Description</em> doesn&#8217;t display if the <em>Detailed Description</em> is populated. I had a client who wanted the short description and the detailed description to display. In order to accomplish this, the template that contains the description (in this client&#8217;s case it was product_details.tpl) needs to be modified. In the configuration on the store that I was working on it was set to display the <em>Detailed Description</em> if it was filled out and not display the short description. If it was not filled out, then it defaults to display the <em>Short Description</em> if that is filled out:  </p>
<p>This is the code that shows the detailed version as described above:<br />
<code>{$product.fulldescr|default:$product.descr}</code></p>
<p>To change this so that it displays both, you can insert this where you want it:<br />
<code>{$product.descr}<br />
{$product.fulldescr}</code></p>
<p>Thanks to the X Cart forums and this thread for this solution. The store I was working on had a different configuration, but this led me to the answer: <a href="http://forum.x-cart.com/showthread.php?t=12133">X Cart Short Description Display</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chromebright.com/x-cart-short-description-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

