<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Tips and Tricks</title>
	
	<link>http://www.tipsandtricks-hq.com</link>
	<description>Tech tips, WordPress plugins, WordPress tweaks and Technical tips to build a better blog.</description>
	<lastBuildDate>Sat, 13 Mar 2010 04:21:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/tipsandtricks-hq" /><feedburner:info uri="tipsandtricks-hq" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>tipsandtricks-hq</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Basic Guide to CSS</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/pNlnUIggWQc/basic-guide-to-css-2023</link>
		<comments>http://www.tipsandtricks-hq.com/basic-guide-to-css-2023#comments</comments>
		<pubDate>Sun, 07 Mar 2010 01:35:31 +0000</pubDate>
		<dc:creator>Ivy</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=2023</guid>
		<description><![CDATA[Many people want to make simple CSS changes but do not know where to  start or are afraid that they will change the wrong thing. As a result of this I get asked a lot of CSS related questions from new WordPress users. The fact is that learning CSS is not really that hard. [...]]]></description>
			<content:encoded><![CDATA[<p>Many people want to make simple CSS changes but do not know where to  start or are afraid that they will change the wrong thing. As a result of this I get asked a lot of CSS related questions from new WordPress users. The fact is that learning CSS is not really that hard. Once you get a hang of the basics, you can quickly become an advanced CSS user if you keep playing around with it. In this article I have explained how to do simple CSS modifications, hopefully it will be of some help to some of you.</p>
<h4>Let&#8217;s get started.</h4>
<p>First, you should make a back up copy of CSS files you are going to modify. You should do this with any file you plan on modifying incase something goes wrong, you can always revert back to the version you know works properly.</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/03/css_icon_128.png"><img class="alignnone size-full wp-image-2088" title="css_icon_128" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/03/css_icon_128.png" alt="" width="128" height="128" /></a></p>
<h4>What is CSS</h4>
<p>&#8220;Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation semantics (that is, the look and formatting) of a document written in a markup language. It&#8217;s most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML document, including SVG and XUL.&#8221; &#8211; Wikipedia</p>
<p>A CSS rule (the sentence) has two main parts:</p>
<ul>
<li>Selector: This is usually the HTML element you want to style (e.g. Header 1-6, paragraph, body, etc ).</li>
<li>Declaration: This is what you want to do to the selector. (e.g. Change the text color, text alignment, font, font size, etc).</li>
</ul>
<p>Here is an example of a CSS rule</p>
<ul>
<li>h1{color:green;font:20px;}</li>
<li>h1= selector color and font = the property green and 20 px = the value</li>
</ul>
<p>The declaration will consist of a property and a value and each property must have a value.<br />
The CSS declaration will always end with a semicolon (;)example: color:green;The CSS declaration group will always be surrounded with ({}) example {color:green;text-align:center;}</p>
<p>You can make the CSS easier to read by putting each declaration on a separate line.<br />
example:</p>
<p><code>h1<br />
{<br />
color:purple;<br />
text-align:center;<br />
font:20px;<br />
}</code></p>
<p>Now that you have a basic understanding on how CSS works let&#8217;s move on to some simple changes you can make to your website to give it a little personal touch.</p>
<p>Here is some sample code that I have used in this article to show you how to make simple CSS modifications:</p>
<p><code>body<br />
{<br />
background:#444;<br />
width:960px;color:#333;<br />
font:13pt Georgia, Arial, Tahoma, Verdana;<br />
margin:0 auto;<br />
padding:0<br />
}</code></p>
<ul>
<li><span style="color: #000000;">Body = Your selector.</span></li>
<li><span style="color: #000000;">Background = the color of your background.</span></li>
<li><span style="color: #000000;">Width = the width of the body.</span></li>
<li><span style="color: #000000;">Color = the color of the text.</span></li>
<li><span style="color: #000000;">Font = the size and font of the body.</span></li>
<li><span style="color: #000000;">Margin = the size of the margin.</span></li>
<li><span style="color: #000000;">Padding = the amount of padding you want between the objects.</span></li>
</ul>
<p>Let&#8217;s go over a few modifications:</p>
<h4>Changing colors in CSS</h4>
<p>Changing colors in CSS can be done by one of the following ways:</p>
<ul>
<li>By name: Red, blue, green and so on</li>
<li>RGB: A RGB value looks like this (255,0,0)</li>
<li>Hex: A hex value looks like this (ff0000) or shorthand hex looks like this 333 or 444 and so on.</li>
</ul>
<p>You can find a list of the hex numbers with a quick search on the internet.</p>
<p>Now let&#8217;s make some simple modification to the sample CSS code:</p>
<p><code>body<br />
{<br />
background:#3300cc;<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> I changed the background color by changing the hex value to 3300cc(dark blue).<br />
width:960px;<br />
color:#bbcbff;<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> I changed the text color from #333 to bbcbff (light grey color).<br />
font:22pt Georgia, Arial, Tahoma, Verdana;<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> I changed the size of the font to 22pt.<br />
margin:0 auto;<br />
padding:0;<br />
}</code></p>
<p>Once you have made your changes you can save the file and upload it to your site. These are simple modifications you can use to give your site a fresh new look.</p>
<h4>Text alignment</h4>
<p>Let&#8217;s add some text alignment to this bit of code. You can use the following text alignments</p>
<ul>
<li>Center</li>
<li>Left</li>
<li>Right</li>
<li>Justify</li>
</ul>
<p><code>body<br />
{<br />
background:#444;width:960px;<br />
color:#333;<br />
text-align:center;<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> I entered a text-align property with the value as center.<br />
font:13pt Georgia, Arial, Tahoma, Verdana;<br />
margin:0 auto;<br />
padding:0<br />
}</code></p>
<h4>Background image:</h4>
<p>In some cases you may want to use a background image.</p>
<p>Here is an example of how to do this:</p>
<p><code>body<br />
{<br />
background-image:URL('img_gradent15.png');<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> URL this is going to be where the image is located.<br />
background-repeat:no-repeat;<br />
background-position:bottom left;<br />
}</code></p>
<p>This will add an image to the bottom left of the body with no repeating of the image.</p>
<p>To repeat an image you can use the following declaration:</p>
<ul>
<li>background-repeat:repeat-x;</li>
<li>background-repeat:repeat-y;</li>
</ul>
<p>This will repeat the image along the x or y axis. By default the image will be repeated both horizontally and vertically.</p>
<h4>Changing the size of an object:</h4>
<p>This modification works very well when you have an object (e.g. a button image) that is appearing too large/small. Some WordPress themes come with a default image size and will make any image you use that size. You can modify the code to override the themes default setting to display the images properly.</p>
<p>For this example we will change the size of the logo for the Infinity Remix theme.</p>
<p>Here is the code for this:</p>
<p><code>#logo<br />
{<br />
width:450px<a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> The width of the logo is 450px. My logo is 625px to change this we need to adjust the px's (pixels)of the width property.<br />
}</code></p>
<p>This is what the code should look like after the changes have been made.</p>
<p><code>#logo<br />
{<br />
width:625px <a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif"><img class="alignnone size-full wp-image-2022" title="arrow copy" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/arrow-copy.gif" alt="" width="51" height="12" /></a> I have changed the width to 625px.<br />
}</code></p>
<p>Remember when you make a size adjustment you may have to modify other part of the CSS to fit everything properly in the space you are modifying (e.g. your header you may need to move other objects or text to accommodate the size change).</p>
<p>These are just a few simple things you can do with CSS. With CSS your creative possibilities are endless. If you have a good CSS resource or would like to leave a comment feel free to in the comments section below.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fbasic-guide-to-css-2023&amp;linkname=Basic%20Guide%20to%20CSS"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wp-table-plugin-for-wordpress-with-the-fatal-error-fix-575" title="WP-Table plugin for Wordpress with the fatal error fix">WP-Table plugin for Wordpress with the fatal error fix</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-theme-choosing-tips-and-resources-520" title="WordPress Theme Choosing Tips and Resources">WordPress Theme Choosing Tips and Resources</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-category-specific-rss-feed-subscription-menu-325" title="WordPress Plugin for Category Specific RSS feed subscription menu">WordPress Plugin for Category Specific RSS feed subscription menu</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-optimization-tips-and-tricks-for-better-performance-and-speed-1435" title="WordPress Optimization Tips and Tricks for Better Performance and Speed">WordPress Optimization Tips and Tricks for Better Performance and Speed</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/pNlnUIggWQc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/basic-guide-to-css-2023/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/basic-guide-to-css-2023</feedburner:origLink></item>
		<item>
		<title>Shop Admin Tips – Simple Upsell and Cross sell Techniques that I Use</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/ZQPecyUuWic/shop-admin-tips-simple-upsell-and-cross-sell-techniques-that-i-use-2004</link>
		<comments>http://www.tipsandtricks-hq.com/shop-admin-tips-simple-upsell-and-cross-sell-techniques-that-i-use-2004#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:48:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Shop Admin Tips]]></category>
		<category><![CDATA[Blog Setup]]></category>
		<category><![CDATA[Upsell tips]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=2004</guid>
		<description><![CDATA[In this article I will share a few simple upselling tips that I personally use without irritating the customer and have had success with. Please note that my goal with upselling is not to trick a customer into buying something or sell them some junk.
My aim is to show the customer additional products or services [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I will share a few simple upselling tips that I personally use without irritating the customer and have had success with. Please note that my goal with upselling is not to trick a customer into buying something or sell them some junk.</p>
<p>My aim is to show the customer additional products or services that might better meet their needs or will add value to the product that they are already buying. It&#8217;s a way of demonstrating that I am aware of my customer&#8217;s needs and care about their satisfaction.</p>
<h3>What is Upselling?</h3>
<p><em>&#8220;Upselling is a sales technique whereby a salesperson induces the customer to purchase more expensive items, upgrades, or other add-ons in an attempt to make a more profitable sale. Upselling usually involves marketing more profitable services or products, but upselling can also be simply exposing the customer to other options he or she may not have considered previously.&#8221;</em> &#8211; Wikipedia</p>
<h4>1. Place Offers on the Checkout Page</h4>
<p>There are many places on your website where you can upsell. The most common would be the view cart/checkout page. Visitors who come to your checkout page are potential buyers and most likely have the credit card ready. So it is a lot easier to upsell them something relevant as it will most likely benefit them.</p>
<p>You can also introduce an upsell page that the customers have to pass before they can go to the &#8220;Checkout Page&#8221;.</p>
<h4>2. Offer Bundle Product and Discount</h4>
<p>If you have multiple products that are relevant then offering bundled/packaged product at a special price works very good.</p>
<p>Giving out coupons that give discounts when buying multiple items work well too. Most e-commerce software will let you configure coupons so use them. If you are using the <a href="http://www.tipsandtricks-hq.com/?p=1059">WP eStore plugin</a> then you could configure conditional coupons that gives discounts like the following:</p>
<ul>
<li>Give 25% discount if the total amount is greater than $50.00</li>
<li> Give 20% discount if the total number of items in the cart is more than 5</li>
<li> Give free shipping if the total amount is greater than $100.00</li>
</ul>
<h4>3. Offer Special Discount Coupon</h4>
<p>You can give special discount coupons or promotional offers to customers after they make a purchase. This usually gives them incentive to buy more from you. All you have to do is place your offer on the Thank You (Post payment landing page).</p>
<p>Again,if you are using the <a href="http://www.tipsandtricks-hq.com/?p=1059">WP eStore plugin</a> then you can configure a block of Text/HTML (your customer only special offer) that automatically gets displayed to the customer with the transaction result on the &#8220;Thank You&#8221; page like the following screenshot:</p>
<div id="attachment_2010" class="wp-caption alignnone" style="width: 454px"><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/upsell-offer.gif"><img class="size-full wp-image-2010" title="upsell-offer" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/02/upsell-offer.gif" alt="" width="444" height="262" /></a><p class="wp-caption-text">Upsell Offer on the Thank You page</p></div>
<h4>4. Use words like &#8220;Special Offers&#8221; to communicate</h4>
<p>Use words like &#8220;Special Offers&#8221;, &#8220;Great Deals&#8221; to draw customers attention. It is very easy to communicate &#8220;savings&#8221;, &#8220;value&#8221; using those words and everybody likes to save.</p>
<h3>Some Things to Keep in Mind</h3>
<ul>
<li>Don&#8217;t be unethical&#8230; you want to give customers more than what they pay for so they go away happy. Never sell them unnecessary items just to make a sale.</li>
<li> Don&#8217;t be too pushy and make your checkout page like GoDaddy (I am not sure if I am the only one who gets annoyed with their checkout system).</li>
<li> Don’t overdo and clutter your page with every offer you can think of.</li>
<li> Don’t promote competing products on the view cart page.</li>
</ul>
<p>As a general guideline&#8230; try to keep in mind that the key to successful upselling is to focus your efforts on meeting the customer&#8217;s needs, rather than simply pushing more products and services.</p>
<p>I have shared some of my upselling tips now it&#8217;s your turn. Please share your upselling tips in the comment area below so I can learn <img src='http://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fshop-admin-tips-simple-upsell-and-cross-sell-techniques-that-i-use-2004&amp;linkname=Shop%20Admin%20Tips%20%26%238211%3B%20Simple%20Upsell%20and%20Cross%20sell%20Techniques%20that%20I%20Use"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-estore-and-nextgen-gallery-integration-create-photo-shop-1200" title="WordPress eStore and NextGen Gallery Integration to Create Digital Photo Store">WordPress eStore and NextGen Gallery Integration to Create Digital Photo Store</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/which-cpm-ad-network-to-use-for-a-relatively-new-blog-1367" title="Which CPM ad Network to Use for a Relatively New Blog">Which CPM ad Network to Use for a Relatively New Blog</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/what-would-you-do-if-somehow-you-lost-your-blog-content-today-958" title="What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?">What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/top-15-search-engine-optimization-seo-mistakes-i-commonly-make-701" title="Top 15 Search Engine Optimization (SEO) Techniques I Forget to do">Top 15 Search Engine Optimization (SEO) Techniques I Forget to do</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916" title="Shop Admin Tips &#8211; Protect Yourself from Unfair Refund Claims">Shop Admin Tips &#8211; Protect Yourself from Unfair Refund Claims</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/ZQPecyUuWic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/shop-admin-tips-simple-upsell-and-cross-sell-techniques-that-i-use-2004/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/shop-admin-tips-simple-upsell-and-cross-sell-techniques-that-i-use-2004</feedburner:origLink></item>
		<item>
		<title>10 Common HTML Mistakes to Avoid</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/PYw_mMpU3pI/10-common-html-mistakes-to-avoid-1980</link>
		<comments>http://www.tipsandtricks-hq.com/10-common-html-mistakes-to-avoid-1980#comments</comments>
		<pubDate>Mon, 25 Jan 2010 10:15:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[web masters]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1980</guid>
		<description><![CDATA[The following is a list of common HTML mark up mistakes made by front end developers. Whether you are a newbie web designer, or a programmer who wants to try his hands in UI designing, try to avoid these mistakes.

1. Don&#8217;t place Block elements within Inline elements
An HTML element is displayed as Block or as [...]]]></description>
			<content:encoded><![CDATA[<p>The following is a list of common HTML mark up mistakes made by front end developers. Whether you are a newbie web designer, or a programmer who wants to try his hands in UI designing, try to avoid these mistakes.</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/html.png"><img class="alignnone size-full wp-image-1988" title="html" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/html.png" alt="" width="128" height="128" /></a></p>
<h3>1. Don&#8217;t place Block elements within Inline elements</h3>
<p>An HTML element is displayed as Block or as Inline by default. Block elements, such as divs and paragraphs, make up the structure of the document. Inline elements reside in these blocks, such as anchor and span tags. So you should never put blocks inside inline elements.</p>
<p><strong>Wrong:</strong> <code>&lt;a href="#"&gt;&lt;h2&gt;Block inside Inline&lt;/h2&gt;&lt;/a&gt;</code><br />
<strong>Right:</strong> <code>&lt;h2&gt;&lt;a href="#"&gt;Inline inside Block&lt;/a&gt;&lt;/h2&gt;</code></p>
<h3>2. Always have the alt attribute for image tags</h3>
<p>The ALT attribute is a required one for IMG tags, it describes the context of the image. It helps your user on a screen reader or with a slow connection to decide whether or not the image is important. It also makes the web crawler index your contents better. If the images is just for show, use an empty ALT attribute like alt=&#8221;"</p>
<p><strong>Wrong:</strong> <code>&lt;img src="profilepic.jpeg"/&gt;</code><br />
<strong>Right:</strong> <code>&lt;img src="profilepic.jpeg" alt="Profile pic of the user"/&gt;</code></p>
<h3>3. Don&#8217;t use line breaks to show a list</h3>
<p>If you wan&#8217;t to show a list of things in bulleted or numbered order, never use line breaks. Use unordered list &lt;ul&gt; or ordered list &lt;ol&gt; tags for this purpose.</p>
<p><strong>Wrong: </strong><br />
<code><br />
1. Steve Jobs&lt;br/&gt;<br />
2. Bill Gates&lt;br/&gt;<br />
3. Linus Torvalds<br />
</code><br />
<strong>Right: </strong><br />
<code><br />
&lt;ol&gt;<br />
&lt;li&gt;Steve Jobs&lt;/li&gt;<br />
&lt;li&gt;Bill Gates&lt;/li&gt;<br />
&lt;li&gt;Linus Torvalds&lt;/li&gt;<br />
&lt;/ol&gt;<br />
</code></p>
<h3>4. Don&#8217;t use &lt;b&gt; and &lt;i&gt; for bolding and italicizing</h3>
<p>&lt;b&gt; and &lt;i&gt; are used for bolding and italicizing texts. However semantically they are classified as presentational tags. You should rather use the CSS properties font-weight and font-style for these purposes respectively. If practicality dictates to apply the styles on the document, use &lt;strong&gt; and &lt;em&gt; instead. They do the same job as &lt;b&gt; and &lt;i&gt; but are semantically correct.</p>
<p><strong>Wrong:</strong> <code>&lt;b&gt;This is bold but wrong!&lt;/b&gt;</code><br />
<strong>Right:</strong> <code>&lt;strong&gt;This is bold and right!&lt;/strong&gt;</code></p>
<h3>5. Don&#8217;t use multiple line breaks</h3>
<p>The line break tag of &lt;br /&gt; should only be used to insert is single line breaks in the flow of paragraph text to knock a particularly word down onto a new line. It shouldn&#8217;t be used to make gaps between elements, instead, split the text into separate paragraphs, or adjust the margin styled by CSS.</p>
<p><strong>Wrong: </strong><br />
<code><br />
This is a line<br />
&lt;br/&gt;<br />
&lt;br/&gt;<br />
This is another line.<br />
</code><br />
<strong>Right: </strong><br />
<code><br />
&lt;p&gt;This is a line&lt;/p&gt;<br />
&lt;p&gt;This is another line&lt;/p&gt;<br />
</code></p>
<h3>6. Avoid Inline Styles</h3>
<p>You have probably heard this a lot of times before. The whole point of semantic HTML and CSS is to separate document structure and styling, so it just doesn&#8217;t make sense to place styling directly in the HTML document.</p>
<p><strong>Wrong:</strong></p>
<p><code>&lt;h2 style="color:red;"&gt;Wrong&lt;/h2&gt;</code></p>
<p><strong>Right:</strong></p>
<p>HTML =&gt;<br />
<code>&lt;h2&gt;Right&lt;/h2&gt; </code><br />
CSS =&gt;<br />
<code>h2 .red{color: red;}</code></p>
<h3>7. Don&#8217;t add(or remove) the border attribute in HTML</h3>
<p>Border attribute is also presentational and should be semantically left to be modified in the CSS rather than in the HTML document.</p>
<p><strong>Wrong: </strong></p>
<p><code>&lt;img src="mypic.png" border="0"/&gt;</code><br />
<strong></strong></p>
<p><strong>Right:</strong></p>
<p>HTML =&gt;<br />
<code>&lt;img src="mypic.jpg"/&gt;</code><br />
CSS =&gt;<br />
<code>img .no-border{border: 0px;}</code></p>
<h3>8. Never use &lt;blink&gt; or &lt;marquee&gt;</h3>
<p>These tags have never been included in the official HTML standard of W3C consortium. Apart from that, their use is considered as ugly and unimpressive. If you need to draw attention to a certain part of your document, use an alternative approach in a less offensive manner.</p>
<p><strong>Wrong:</strong> <code>&lt;marquee&gt;Look at me!&lt;/marquee&gt;</code><br />
<strong>Right: </strong>Just don&#8217;t use it.</p>
<h3>9. Avoid using deprecated elements</h3>
<p>There are some old HTML tags and attributes which have been declared deprecated by W3C consortium. Although modern browsers currently support them, they might not in future. Check out <a rel="nofollow" href="http://uzzal.wordpress.com/2009/10/08/fobidden-deprecated-html-tags-and-attributes/" target="_blank">this article</a> that lists almost all of the deprecated elements.</p>
<h3>10. Don&#8217;t forget to put the DOCTYPE</h3>
<p>The Doctype describes what kind of HTML you are using. If it&#8217;s not there, you don&#8217;t know if your code is valid. Plus your browser makes assumptions for you, and it might not workout the way you planned. Its often left off because nobody can remember the long address. You can use a blank document template, so you don&#8217;t have to remember it, but it&#8217;ll always be available.<br />
Finally, take the help of online HTML/CSS validator to find loopholes in your mark up. Here are the links for a couple of them:</p>
<ul>
<li><a href="http://validator.w3.org/" target="_blank">HTML Validator </a></li>
<li><a href="http://jigsaw.w3.org/css-validator/" target="_blank">CSS Validator</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2F10-common-html-mistakes-to-avoid-1980&amp;linkname=10%20Common%20HTML%20Mistakes%20to%20Avoid"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wp-table-plugin-for-wordpress-with-the-fatal-error-fix-575" title="WP-Table plugin for Wordpress with the fatal error fix">WP-Table plugin for Wordpress with the fatal error fix</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-theme-choosing-tips-and-resources-520" title="WordPress Theme Choosing Tips and Resources">WordPress Theme Choosing Tips and Resources</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-category-specific-rss-feed-subscription-menu-325" title="WordPress Plugin for Category Specific RSS feed subscription menu">WordPress Plugin for Category Specific RSS feed subscription menu</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-affiliate-platform-plugin-simple-affiliate-program-for-wordpress-blogsite-1474" title="WordPress Affiliate Platform Plugin &#8211; Simple Affiliate Program for WordPress Blog/Site">WordPress Affiliate Platform Plugin &#8211; Simple Affiliate Program for WordPress Blog/Site</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/what-would-you-do-if-somehow-you-lost-your-blog-content-today-958" title="What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?">What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/PYw_mMpU3pI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/10-common-html-mistakes-to-avoid-1980/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/10-common-html-mistakes-to-avoid-1980</feedburner:origLink></item>
		<item>
		<title>Tips to Make Ubuntu Boot Faster</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/T86sa4N7BSg/tips-to-make-ubuntu-boot-faster-1964</link>
		<comments>http://www.tipsandtricks-hq.com/tips-to-make-ubuntu-boot-faster-1964#comments</comments>
		<pubDate>Sat, 16 Jan 2010 03:11:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1964</guid>
		<description><![CDATA[Ubuntu is pushing the Linux desktop movement forward. Since it&#8217;s inception in 2004, Ubuntu has released over 10 versions so far, each one improving on its predecessor. It remains one of those few operating systems, that boots really fast. Still, if you are one of those brave hackers who likes to tune your machine to [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu is pushing the Linux desktop movement forward. Since it&#8217;s inception in 2004, Ubuntu has released over 10 versions so far, each one improving on its predecessor. It remains one of those few operating systems, that boots really fast. Still, if you are one of those brave hackers who likes to tune your machine to maximize efficiency, here are a few tricks on how to make Ubuntu boot faster.</p>
<p><strong>Word of caution:</strong> These tune ups have been tested on Ubuntu 8.04 Hardy Haron. I haven&#8217;t upgraded it as it has been pretty solid and stable release. So if you&#8217;re on a newer(or older) version, I suggest you do some research before applying these tricks. And of course, always keep back ups. Have Fun!</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/ubuntu-linux-icon.jpg"><img class="alignnone size-full wp-image-1965" title="ubuntu-linux-icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/ubuntu-linux-icon.jpg" alt="" width="256" height="254" /></a></p>
<h3>Reducing the boot menu delay</h3>
<p>If you dual-boot Ubuntu and Windows on your computer the boot menu appears for 10 seconds, during which you can select either Windows or Ubuntu. If you only have Ubuntu installed, a prompt appears for three seconds telling you that you can hit a key to see the boot menu. You obviously don&#8217;t need to wait for the 3 seconds since you have no other OS to boot from. You can eliminate this delay by editing the boot menu configuration file.<br />
<code><br />
$ gksu gedit /boot/grub/menu.lst<br />
</code><br />
Then search for the line that reads timeout 10 and change the 10 to 0, to disable the boot menu completely.</p>
<h3>Run boot-time scripts in parallel</h3>
<p>Whenever Ubuntu boots, it runs several scripts that start necessary background services. By default these are set to run one-by-one but if you have a processor with more than one core, such as Intel’s Core Duo series or AMD’s Athlon X2, you can conﬁgure Ubuntu to run the scripts in parallel. This way all the cores are utilized and quite a bit of time can be saved at each boot.<br />
To make the change, type the following to open the necessary conﬁguration ﬁle in Gedit:<br />
<code><br />
$ gksu gedit /etc/init.d/rc<br />
</code><br />
Look for the line that reads CONCURRENCY=none and change it so it reads CONCURRENCY=shell. Then save the ﬁle and reboot your computer.</p>
<h3>Build a readahead profile customized to your machine</h3>
<p>Ubuntu ships with a program named &#8216;readahead&#8217; which allows it cache frequently accessed files to avoid searching around for them at the startup. A default readahead profile is included  in Ubuntu but you can create your own, tailored to your system. Here&#8217;s how to do it:</p>
<ol>
<li> Boot your machine and at the boot loader menu, highlight the Ubuntu entry and press key &#8220;e&#8221;. This will let you temporarily edit the boot menu entry.</li>
<li>Use the cursor keys to move the highlight down to the second line that beings kernel and hit &#8220;e&#8221; again.</li>
<li>Use the right arrow key to move to the end of the line and, after the words quiet and splash, add the word proﬁle.</li>
<li>Hit &#8220;Enter&#8221; and then &#8220;b&#8221; to boot your computer.</li>
</ol>
<p>Note that the ﬁrst boot will be slow because the readahead cache will have to be rebuilt. In subsequent boots, however, you should see speed improvements.</p>
<h3>Trimming the GNOME startup programs</h3>
<p>Once you’ve logged into the GNOME desktop, you’ll face yet another delay as all the GNOME background software starts. A few seconds can be saved by trimming this list and that can be done using the GNOME Sessions program (System → Preferences → Sessions). Under the Startup Programs tab, look through the list for items you might want to prune. For example, if you’re never going to use Evolution’s alarm function then Evolution Alarm Notiﬁer can be disabled by removing the check alongside it. Be careful. Don&#8217;t turn any program off unless you are not sure what it does. For example Volume Manager isn&#8217;t related to audio, instead it enables the automatic detection of external storage devices attached to your machine.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Ftips-to-make-ubuntu-boot-faster-1964&amp;linkname=Tips%20to%20Make%20Ubuntu%20Boot%20Faster"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/unix-vi-commands-take-advantage-of-the-unix-vi-editor-374" title="UNIX vi commands &#8211; take advantage of the UNIX vi editor">UNIX vi commands &#8211; take advantage of the UNIX vi editor</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/equivalent-of-unix-grep-command-in-doswindows-726" title="Equivalent of UNIX Grep command in Dos/Windows">Equivalent of UNIX Grep command in Dos/Windows</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/basic-unix-commands-list-366" title="Basic UNIX Commands List">Basic UNIX Commands List</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/T86sa4N7BSg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/tips-to-make-ubuntu-boot-faster-1964/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/tips-to-make-ubuntu-boot-faster-1964</feedburner:origLink></item>
		<item>
		<title>How to Make a PayPal Mass Payment</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/QGzL05AyZBE/how-to-make-a-paypal-mass-payment-1934</link>
		<comments>http://www.tipsandtricks-hq.com/how-to-make-a-paypal-mass-payment-1934#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:40:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PayPal]]></category>
		<category><![CDATA[Mass Payment]]></category>
		<category><![CDATA[Payment Gateways]]></category>
		<category><![CDATA[Payment Processor]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[Video Tutorial]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1934</guid>
		<description><![CDATA[If you frequently make paypal payments to multiple recipients (e.g. to payout for affiliate commisson) and if you don&#8217;t use the PayPal&#8217;s mass payment option then this article is for you. Now, my first question to you is &#8220;Why aren&#8217;t you using mass payment again?&#8221;  
PayPal&#8217;s mass payment allows anyone with a Premier or [...]]]></description>
			<content:encoded><![CDATA[<p>If you frequently make paypal payments to multiple recipients (e.g. to payout for affiliate commisson) and if you don&#8217;t use the PayPal&#8217;s mass payment option then this article is for you. Now, my first question to you is &#8220;Why aren&#8217;t you using mass payment again?&#8221; <img src='http://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PayPal&#8217;s mass payment allows anyone with a Premier or Business account to send multiple payments instantly and has the following two big advantages:</p>
<ul>
<li>You save a big on the fees. A low fee of 2.0% of the payment amount with a cap of $1.00 USD (or its equivalent in the payment currency) is assessed on each payment made with Mass Payment.</li>
<li> Payments with PayPal’s Mass Payment are instant so you don&#8217;t have to mail out the checks.</li>
</ul>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/mass_payment_icon.png"><img class="alignnone size-full wp-image-1943" title="mass_payment_icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/mass_payment_icon.png" alt="" width="128" height="128" /></a></p>
<h3>How to Make a PayPal Mass Payment</h3>
<h4>Step 1: Create a Mass Pay File</h4>
<p>Create a tab-delimited text file. List the recipients&#8217; email addresses in the first column and the payment amounts in the second column. In the third column, enter the three-letter code for the currency in which the payments will be sent. The following is a screenshot of a sample mass payment file:</p>
<div id="attachment_1935" class="wp-caption alignnone" style="width: 306px"><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/mass_pay_file.gif"><img class="size-full wp-image-1935" title="mass_pay_file" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2010/01/mass_pay_file.gif" alt="" width="296" height="100" /></a><p class="wp-caption-text">Screenshot of a Mass Pay File</p></div>
<h4>Step 2: Make the Payment</h4>
<p>In this step you have to log into your PayPal account and use the mass pay file created in step 1 to make the actual payment. Watch the following video tutorial to learn how the whole process works:<br />
<object id="viddler_b7a9a16" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/b7a9a16/" /><param name="name" value="viddler_b7a9a16" /><param name="allowfullscreen" value="true" /><embed id="viddler_b7a9a16" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/b7a9a16/" name="viddler_b7a9a16" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fhow-to-make-a-paypal-mass-payment-1934&amp;linkname=How%20to%20Make%20a%20PayPal%20Mass%20Payment"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-paypal-donation-plugin-942" title="WordPress Paypal Donation Plugin">WordPress Paypal Donation Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-estore-plugin-complete-solution-to-sell-digital-products-from-your-wordpress-blog-securely-1059" title="WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely">WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-easy-paypal-payment-or-donation-accept-plugin-120" title="Wordpress Easy Paypal Payment or Donation Accept Plugin">Wordpress Easy Paypal Payment or Donation Accept Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/two-simple-paypal-security-related-tips-1875" title="Two Simple PayPal Security Related Tips">Two Simple PayPal Security Related Tips</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/QGzL05AyZBE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/how-to-make-a-paypal-mass-payment-1934/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/how-to-make-a-paypal-mass-payment-1934</feedburner:origLink></item>
		<item>
		<title>Shop Admin Tips – Protect Yourself from Unfair Refund Claims</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/YxJOMlo9220/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916</link>
		<comments>http://www.tipsandtricks-hq.com/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916#comments</comments>
		<pubDate>Wed, 23 Dec 2009 07:58:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Shop Admin Tips]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[selling online]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1916</guid>
		<description><![CDATA[If you sell stuff online especially digital product(s) then chances are that at some point down the path you will face some fraudulent customers who will try to rip you off. I sell many products online (some from my Tips and Tricks site and some from my other web sites). I have seen many of [...]]]></description>
			<content:encoded><![CDATA[<p>If you sell stuff online especially digital product(s) then chances are that at some point down the path you will face some fraudulent customers who will try to rip you off. I sell many products online (some from my <a href="http://www.tipsandtricks-hq.com/">Tips and Tricks</a> site and some from my other web sites). I have seen many of these tricks that the fraudulent customers use to take unfair advantage from the seller.</p>
<p>You probably already know that I have a few WordPress Plugins (e.g. <a href="http://www.tipsandtricks-hq.com/?p=768" target="_blank">Simple WordPress Shopping Cart</a>, <a href="http://www.tipsandtricks-hq.com/?p=1059" target="_blank">WP eStore</a>, <strong>Another one in development</strong>) that help you sell online from your WordPress blog so a lot of my readers have WordPress powered site and sell products online. Going forward I am going to try to write more posts on various fraudulent tricks that customers tried on me and how I handled it. Hopefully these posts will help improve your online selling experience as a shop admin. In this post I have covered some aspects of the refund trick that many customers use.</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/refund_icon.jpg"><img class="alignnone size-full wp-image-1925" title="refund_icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/refund_icon.jpg" alt="refund_icon" width="128" height="127" /></a></p>
<h3>The Good Old Refund Trick</h3>
<p>I am pretty sure that most of you who are selling online have a system that makes sure the customer only gets the product after they have made a payment and the money is in your account but do you have any guard against fraudulent customers asking for unfair refunds?</p>
<p>There will be times when the refund claim is valid but sometimes it won&#8217;t be. You need to be prepared for this kind of events so the customer doesn&#8217;t get you by surprise and take advantage of you.</p>
<p>You might think &#8220;why would the customer do that?&#8221;, well I don&#8217;t know why but there are some people who use this technique to get the digital product for free.</p>
<p>Basically, they purchase your product legally so they can download it then they ask for a refund showing one of the following similar causes:</p>
<ul>
<li>Couldn&#8217;t Download the Product.</li>
<li> No time to setup or explore the product (this is a weird one)</li>
<li> The product does not match the description of the product.</li>
<li> There was some functionality that the customer was looking for and is not in the product (why didn&#8217;t you ask before the purchase?).</li>
</ul>
<p>Once you receive a refund request with the similar causes explained above look for one of the following types of customer behaviors to identify potential fraudulent customers who are just trying to rip you off:</p>
<ul>
<li> Asks for a refund within a short time of making a purchase (they already had the refund trick planned out)</li>
<li> Unwillingness to cooperate with you to address any issue with the product (it&#8217;s like… give me my refund I don&#8217;t want to hear anything else)</li>
<li> Won&#8217;t take the download even if you email them later. (they already got the download now they want the money back)</li>
<li> Will send you rude emails with complains about the product (trying to make you feel bad)</li>
<li> Open a PayPal dispute (if sold through PayPal) to scare you off.</li>
</ul>
<p>So how do you protect yourself from these types of fraudulent refund activities? Well, I don&#8217;t know of any potion that will remedy this for good but I will share what I know and do to protect myself and hopefully it will give you some pointers.</p>
<h3>Safe Selling Tips</h3>
<p>It will help you protect yourself from fraudsters if you keep the following simple points in mind when selling online:</p>
<ul>
<li>Give detailed description of the product.</li>
<li> Provide clear images, preview, live demo if possible.</li>
<li> Tell them upfront how they are going to get the product.</li>
<li> Let them ask you questions and respond to their inquiries so they can get a clear picture of the product.</li>
<li> State your &#8220;Refund Policy&#8221; (if any) in the &#8220;Terms and Conditions&#8221;.</li>
<li> Make sure the customer has to agree to the &#8220;Terms and Conditions&#8221; before they can make a purchase.</li>
</ul>
<h3>Refund Trick Case Study</h3>
<p>Time for a real life example <img src='http://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I didn&#8217;t mention the name or email address of the person involved but that shouldn&#8217;t make any difference.</p>
<p>A few days ago I got a forum post saying there is an issue with the <a href="http://www.tipsandtricks-hq.com/?p=1474" target="_blank">WP Affiliate Platform plugin</a> that he purchased. It turned out that his server was using an old version of PHP so I gave him a fix for it and thought everything was good. Soon after that I received an email from PayPal for a &#8220;Dispute&#8221; notification on that purchase! The reason used was that the product was &#8220;Significantly Not as Described&#8221;!</p>
<p>At this point I was a little speechless cause I have live demo and screenshots showing exactly how the affiliate plugin looks like! Also, all the documentation for the product is accessible to everyone which allows the visitors to see exactly how things are done with the product before they make a purchase. So I asked him how the plugin is different than it is described and also pointed out the &#8220;Terms &amp; Conditions&#8221; that he agreed to when making the purchase. Then I got the following email back from him:</p>
<div id="code_block">I read the terms and conditions&#8230;no where did you state what version of php you were written to go with&#8230;that I can find&#8230;your documentation is bare at best when it comes to that.. again, I&#8217;ve deleted and will not re download&#8230;thanks but no thanks. I&#8217;ve lost significant income and credibility already&#8230;please just refund..we&#8217;ll part friends.</div>
<p>Now, I was even more confused… how can you loose significant income and credibility from a system that you haven&#8217;t even setup? This guy was starting to sound more like one of those types I stated above so I took it to PayPal and stated my case. PayPal ruled it in favor of me for obvious reasons. I probably wouldn&#8217;t have taken it to PayPal and gave him a refund if his reasoning was appropriate. Anyway, that was not the end of it… soon after he found out that PayPal ruled it in favor of me he sent me the following email:</p>
<div id="code_block">I&#8217;m asking you again , nicely please refund my purchase. I have no need for this and have lost hundreds of dollars and significant credibility with a plug in I cannot use&#8230;maybe you want a blog post? I don&#8217;t know..but I just want my money back and no more discussion.</div>
<p>I started laughing because at this point his intentions were becoming clear to me. Why would you try to bribe with writing a blog post if you are correct on your points?</p>
<p>Anyway, my advice to you is that make sure you have preventative measures in place and be prepared to fight for situations like this. Oh! And don&#8217;t forget to <a href="http://feeds.feedburner.com/tipsandtricks-hq">subscribe</a> to my blog to receive the latest posts <img src='http://www.tipsandtricks-hq.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fshop-admin-tips-protect-yourself-from-unfair-refund-claims-1916&amp;linkname=Shop%20Admin%20Tips%20%26%238211%3B%20Protect%20Yourself%20from%20Unfair%20Refund%20Claims"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/two-simple-paypal-security-related-tips-1875" title="Two Simple PayPal Security Related Tips">Two Simple PayPal Security Related Tips</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-paypal-donation-plugin-942" title="WordPress Paypal Donation Plugin">WordPress Paypal Donation Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-estore-plugin-complete-solution-to-sell-digital-products-from-your-wordpress-blog-securely-1059" title="WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely">WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-easy-paypal-payment-or-donation-accept-plugin-120" title="Wordpress Easy Paypal Payment or Donation Accept Plugin">Wordpress Easy Paypal Payment or Donation Accept Plugin</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/YxJOMlo9220" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916</feedburner:origLink></item>
		<item>
		<title>Debugging JavaScript Code with Firebug</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/704rxHWM1mQ/debugging-javascript-code-with-firebug-1899</link>
		<comments>http://www.tipsandtricks-hq.com/debugging-javascript-code-with-firebug-1899#comments</comments>
		<pubDate>Wed, 02 Dec 2009 09:04:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1899</guid>
		<description><![CDATA[Firebug has become an indispensable tool for doing front-end development of web applications. However, most developers are unaware of some very useful features of this tool, especially when it comes to debugging JavaScript code. I&#8217;ve personally seen many of my colleagues relying on alert() function to reveal the flow of execution of their complex codes. [...]]]></description>
			<content:encoded><![CDATA[<p>Firebug has become an indispensable tool for doing front-end development of web applications. However, most developers are unaware of some very useful features of this tool, especially when it comes to debugging JavaScript code. I&#8217;ve personally seen many of my colleagues relying on alert() function to reveal the flow of execution of their complex codes. In this article we&#8217;ll look into some ways that Firebug can help you debug JavaScript and boost your productivity.</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/software-debug.jpg"><img class="alignnone size-full wp-image-1904" title="software-debug" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/software-debug.jpg" alt="software-debug" width="110" height="78" /></a></p>
<h3>Breakpoints</h3>
<p>Setting a breakpoint on a line enables you to pause/resume execution of code at your will. When you put a breakpoint on a line, say line 10, the program pauses execution when it reaches line 10. Let&#8217;s see how we can do that:</p>
<p>Turn Firebug on and enable Console and Script views. Then visit<a rel="nofollow" href="http://ajaxify.com/run/firebug/debug/"> ajaxify.com</a>. In the Script view, choose firebug.js from the dropdown menu at the top left corner. On the sub-view at the right click on Breakpoints pane. On the left margin of Script view, you will see the line numbers appear. Now click on line 10, it will be marked by a red circle. This red circle is the breakpoint, the Breakpoint sub-view will list you have set.</p>
<p>Now refresh and hit the Change the Message! button. You&#8217;ll notice line 10 is highlighted, a yellow arrow appearing at the margin indicates that the script has made its way to the breakpoint. From this point you can control the flow of execution using the controls now activated at the top right corner of Script view.</p>
<ul>
<li>Continue This button resumes execution. The script will only pause again if and when the script reaches a breakpoint.</li>
<li> Step Over This button executes the current line, including any functions that are invoked along the way, and moves to the next line.</li>
<li> Step Into This button ordinarily moves to the next line, as with Step Over. However, if the debugger happens to be paused at a line that invokes a function, the script will instead jump to the first line of the function.</li>
<li> Step Out This button causes the script to jump out of the current function, returning to the method from which it was called.</li>
</ul>
<div id="attachment_1901" class="wp-caption alignnone" style="width: 454px"><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/javascript-debug-screenshot.gif"><img class="size-full wp-image-1901" title="javascript-debug-screenshot" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/12/javascript-debug-screenshot.gif" alt="Firebug Debug Screenshot" width="444" height="135" /></a><p class="wp-caption-text">Firebug Debug Screenshot</p></div>
<h3>Conditional Breakpoints</h3>
<p>Sometimes you may want a set a breakpoint, but make it apply only in certain conditions. You need conditional breakpoints. Right-click on a breakpoint and you’ll see a balloon-styled dialog asking you to enter a condition. This is simply a JavaScript expression; each time the breakpoint is reached, Firebug will evaluate the expression. If—and only if—the expression is true, the breakpoint will be applied and execution will pause.</p>
<h3>Watches</h3>
<p>A watch is a JavaScript expression that the debugger can continuously evaluate and display the value at your request, so that you don&#8217;t have to do it manually using the alert box. The expression could be as simple as a variable, or as complex as a formula containing calls to other functions. In our previous example, click on Watch and enter counter  in the text field new watch expression&#8230; As you keep clicking on the Change the Message! button the value of counter increases, and you can watch the value in the sub-view at the right.</p>
<p>Tip: When you type in a new watch expression, hit the tab button to get auto-suggestions for properties of objects.</p>
<h3>Call Stack Tracing</h3>
<p>Call stack tracing is the process which reveals the sequence of function calls, with the latest function called showing at the top and the first showing at bottom. When the debuggers is paused, you can click on the Stack sub-view to see the function call sequence. For our first example, when the program reaches the breakpoint and execution is paused, the stack trace will be like this:</p>
<div id="code_block">changeMessage<br />
handleButtonClick</div>
<p>It means when you clicked the button, the handler for the event handleButtonClick was called, which then called changeMessage. Thus, stack tracing can give you useful insight about program execution flaw when you stuck untangling some messy logic.</p>
<h3>Logging function calls</h3>
<p>Sometimes a problematic function is called so many times that you can&#8217;t break into the debugger every time. You just want to know when it&#8217;s called and what parameters were passed in. To track all calls to a function, just right click on it in the Script tab and choose &#8220;Log calls to &#8216;function name&#8217;&#8221;. Then hop over to the Console and watch the calls stream in.</p>
<p>Sometimes a problematic function is called so many times that breaking into the debugger seems like a tedious task. If you just want to know when the function is called and what parameters are passed in, you can log the calls to this function in the Console. To achieve this, right click on the function in the Script view and choose Log calls to . Then switch to Console view, execute the code and watch the stream of calls.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fdebugging-javascript-code-with-firebug-1899&amp;linkname=Debugging%20JavaScript%20Code%20with%20Firebug"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/what-would-you-do-if-somehow-you-lost-your-blog-content-today-958" title="What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?">What Would You Do If Somehow You Lost all Your Blog&#8217;s Content?</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/is-the-rss-feed-of-your-wordpress-blog-working-in-all-major-browsers-1772" title="Is the RSS Feed of your WordPress Blog Working in all Major browsers?">Is the RSS Feed of your WordPress Blog Working in all Major browsers?</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/how-to-import-wordpress-sql-database-backup-file-without-having-create-new-database-privileges-in-phpmyadmin-415" title="How to import WordPress SQL database backup file without having &#8216;create new database&#8217; privileges in phpMyAdmin">How to import WordPress SQL database backup file without having &#8216;create new database&#8217; privileges in phpMyAdmin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/how-to-fix-wordpresscom-stats-plugin-showing-zero-0-visitors-265" title="How to fix WordPress.com Stats plugin showing zero (0) visitors!">How to fix WordPress.com Stats plugin showing zero (0) visitors!</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/how-to-fix-unable-to-create-directory-error-when-uploading-image-into-wordpress-557" title="How to Fix &#8216;Unable to create directory&#8217; error when uploading image into WordPress">How to Fix &#8216;Unable to create directory&#8217; error when uploading image into WordPress</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/704rxHWM1mQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/debugging-javascript-code-with-firebug-1899/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/debugging-javascript-code-with-firebug-1899</feedburner:origLink></item>
		<item>
		<title>WordPress Plugin – Change WP eMail From Details</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/N-5yCS5HGgs/wordpress-plugin-change-wp-email-from-details-1883</link>
		<comments>http://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883#comments</comments>
		<pubDate>Fri, 20 Nov 2009 03:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1883</guid>
		<description><![CDATA[This WordPress plugin lets you customize the email details that appear on emails sent from WordPress. By default the &#8220;From Name&#8221; on emails sent from wordpress has a name &#8220;WordPress&#8221; and the &#8220;From Address&#8221; on emails has &#8220;wordpress@your-domian.com&#8221; which is not very meaningful. You can customize both these fields with this plugin so your customers [...]]]></description>
			<content:encoded><![CDATA[<p>This WordPress plugin lets you customize the email details that appear on emails sent from WordPress. By default the &#8220;From Name&#8221; on emails sent from wordpress has a name &#8220;WordPress&#8221; and the &#8220;From Address&#8221; on emails has &#8220;wordpress@your-domian.com&#8221; which is not very meaningful. You can customize both these fields with this plugin so your customers are not confused.</p>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/plugins/change-wp-mail-from-details/change-wp-mail-from-details.zip"><img class="size-full wp-image-481 aligncenter" title="download_icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2008/12/download_icon.gif" alt="download_icon" width="131" height="53" /></a></p>
<h3>Plugin Installation</h3>
<ol>
<li>Unzip and Upload the folder &#8220;change-wp-mail-from-details&#8221; to the &#8220;/wp-content/plugins/&#8221; directory.</li>
<li>Activate the plugin through the &#8220;Plugins&#8221; menu in WordPress.</li>
</ol>
<h3>Plugin Usage</h3>
<ol>
<li>Check the appropriate checkbox for the options that you want to customize.</li>
<li>Enter the customized text in the appropriate field.</li>
</ol>
<div id="attachment_1884" class="wp-caption alignnone" style="width: 453px"><img class="size-full wp-image-1884" title="change-email-from-details-plugin-settings-sc" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/11/change-email-from-details-plugin-settings-sc.png" alt="Settings Screen of the Change &quot;Email From Details&quot; Plugin" width="443" height="244" /><p class="wp-caption-text">Settings Screen of the Change &quot;Email From Details&quot; Plugin</p></div>
<h3>Support/Donation Option</h3>
<p>Donation option can be found on my <a href="http://www.tipsandtricks-hq.com/development-center">projects</a> page.</p>
<h3>Download Latest Version (v1.0)</h3>
<p><a href="http://www.tipsandtricks-hq.com/wp-content/uploads/plugins/change-wp-mail-from-details/change-wp-mail-from-details.zip">Download</a> the Plugin.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fwordpress-plugin-change-wp-email-from-details-1883&amp;linkname=WordPress%20Plugin%20%26%238211%3B%20Change%20WP%20eMail%20From%20Details"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wp-table-plugin-for-wordpress-with-the-fatal-error-fix-575" title="WP-Table plugin for Wordpress with the fatal error fix">WP-Table plugin for Wordpress with the fatal error fix</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-simple-google-adsense-insertion-170" title="WordPress Plugin for Simple Google Adsense Insertion/Integration">WordPress Plugin for Simple Google Adsense Insertion/Integration</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-category-specific-rss-feed-subscription-menu-325" title="WordPress Plugin for Category Specific RSS feed subscription menu">WordPress Plugin for Category Specific RSS feed subscription menu</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-paypal-donation-plugin-942" title="WordPress Paypal Donation Plugin">WordPress Paypal Donation Plugin</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/N-5yCS5HGgs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883</feedburner:origLink></item>
		<item>
		<title>Two Simple PayPal Security Related Tips</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/V9QEoaecvOs/two-simple-paypal-security-related-tips-1875</link>
		<comments>http://www.tipsandtricks-hq.com/two-simple-paypal-security-related-tips-1875#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:28:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[paypal shopping cart]]></category>
		<category><![CDATA[WordPress Shopping Cart]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1875</guid>
		<description><![CDATA[If you are using any of my WordPress shopping cart plugins (WP eStore or WP Simple Shopping Cart) then chances are that you have a PayPal account and making a bit of money selling your stuff online too. Next step is to keep your money safe so you don&#8217;t loose it from hacking related issues [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using any of my WordPress shopping cart plugins (<a href="http://www.tipsandtricks-hq.com/?p=1059">WP eStore</a> or <a href="http://www.tipsandtricks-hq.com/?p=768">WP Simple Shopping Cart</a>) then chances are that you have a PayPal account and making a bit of money selling your stuff online too. Next step is to keep your money safe so you don&#8217;t loose it from hacking related issues or get fooled by some scam email.</p>
<p><img class="alignnone size-full wp-image-1879" title="paypal-security-icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/11/paypal-security-icon.png" alt="paypal-security-icon" width="128" height="128" /></p>
<p>In this post I have shared two simple PayPal security related tips that you can start using and add that extra layer of security and sleep better at night. The first one is to add more protection around your PayPal account login.</p>
<h3>Use The PayPal security key</h3>
<p>The security key gives you an extra layer of security when you log in to your PayPal account. It creates random security codes to use along with your regular username and password.</p>
<p>It’s like a combination lock for your account – designed to let you in and keep others out – except that the combination always changes. It comes in 2 types, each with different advantages:</p>
<ul>
<li>Security key: This is a small device, the size of a credit card that you carry with you. It creates a unique security code that you use to log in to your account.</li>
<li> Mobile phone security key: You can get temporary security codes on your mobile phone by text messages (also called SMS).</li>
</ul>
<p>Basically you log into your PayPal account as you normally would. After you enter your username and password, you’ll be asked to enter a security code. Once you enter the security code from the hard token you are granted access to your account. So for anyone to be able to hack into your paypal account will have to hack your account password and also have the security token at the same time!</p>
<p>It cost $5 to order a security key (at the time of writing this post) and it is very simple to order and activate.</p>
<div id="attachment_1877" class="wp-caption alignnone" style="width: 454px"><img class="size-full wp-image-1877" title="paypal-security-key" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/11/paypal-security-key.png" alt="Ordering PayPal Security Key" width="444" height="144" /><p class="wp-caption-text">Ordering PayPal Security Key</p></div>
<p>Order your PayPal security key now from <a href="https://www.paypal.com/cgi-bin/webscr?cmd=xpt/Marketing_CommandDriven/securitycenter/PayPalSecurityKey-outside" target="_blank">PayPal</a>.</p>
<p>The second tip is on adding more security around the email communication between you and PayPal.</p>
<h3>Use Email Identification</h3>
<p>Ever wonder if that PayPal email is real? You can use <a href="https://www.paypal.com/cgi-bin/webscr?cmd=xpt/Marketing/securitycenter/general/IconixOverview-outside" target="_blank">PayPal&#8217;s Iconix email identification</a> tool, which can reduce phishing by confirming whether or not an email is really from PayPal.</p>
<p>If you are using <a href="http://www.gmail.com/">Gmail</a> like myself then you can get visual verification of the authenticity of emails from PayPal and eBay by turning on the authentication icon from the Labs tab under settings. Doing so attaches an icon that looks like a key to emails from these verified senders. see screenshot below:</p>
<div id="attachment_1878" class="wp-caption alignnone" style="width: 480px"><img class="size-full wp-image-1878" title="paypal-secure-email-icon" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/11/paypal-secure-email-icon.png" alt="Gmail Secure Email Icon" width="470" height="41" /><p class="wp-caption-text">Gmail Secure Email Icon</p></div>
<p>Now, whenever you receive an email from PayPal you will immediately know if it was genuinely sent from PayPal or not&#8230; No more wasting time!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Ftwo-simple-paypal-security-related-tips-1875&amp;linkname=Two%20Simple%20PayPal%20Security%20Related%20Tips"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-estore-plugin-complete-solution-to-sell-digital-products-from-your-wordpress-blog-securely-1059" title="WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely">WordPress eStore Plugin &#8211; Complete Solution to Sell Digital Products from Your WordPress Blog Securely</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/shop-admin-tips-protect-yourself-from-unfair-refund-claims-1916" title="Shop Admin Tips &#8211; Protect Yourself from Unfair Refund Claims">Shop Admin Tips &#8211; Protect Yourself from Unfair Refund Claims</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-paypal-donation-plugin-942" title="WordPress Paypal Donation Plugin">WordPress Paypal Donation Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-easy-paypal-payment-or-donation-accept-plugin-120" title="Wordpress Easy Paypal Payment or Donation Accept Plugin">Wordpress Easy Paypal Payment or Donation Accept Plugin</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/V9QEoaecvOs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/two-simple-paypal-security-related-tips-1875/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/two-simple-paypal-security-related-tips-1875</feedburner:origLink></item>
		<item>
		<title>Adsense Integration plugins for Wordpress</title>
		<link>http://feedproxy.google.com/~r/tipsandtricks-hq/~3/Bjoxi9dvZSc/adsense-integration-plugins-for-wordpress-1852</link>
		<comments>http://www.tipsandtricks-hq.com/adsense-integration-plugins-for-wordpress-1852#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:02:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[google adsense]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://www.tipsandtricks-hq.com/?p=1852</guid>
		<description><![CDATA[Earlier, we discussed some Pay-per-click ad serving options; their features, advantages, limitations and payment policies. This time we will look into some WordPress plugins that integrates advertisement into the site. Most of them are related to Google Adsense, since it&#8217;s the most widely used advertisement program on the net. But I&#8217;ve also covered some popular [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier, we discussed some <a href="http://www.tipsandtricks-hq.com/?p=1796">Pay-per-click ad serving options</a>; their features, advantages, limitations and payment policies. This time we will look into some WordPress plugins that integrates advertisement into the site. Most of them are related to Google Adsense, since it&#8217;s the most widely used advertisement program on the net. But I&#8217;ve also covered some popular alternatives such as, Chitika, Amazon etc.</p>
<p><img class="alignnone size-full wp-image-1856" title="google_ad-1" src="http://www.tipsandtricks-hq.com/wp-content/uploads/2009/11/google_ad-1.jpg" alt="google_ad-1" width="272" height="376" /></p>
<h3>WP Simple Adsense Integration</h3>
<p>As the name suggests, this plugin makes Adsense integration truly simple. Adding a Google advertisement on your WordPress blog post, page or sidebar is just a trigger text or a PHP function call away. If you feel overwhelmed while using some premium plugins built for the same purpose, this one is definitely for you.</p>
<p><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-simple-google-adsense-insertion-170">[Get the plugin]</a></p>
<h3>Adsense Beautifier</h3>
<p>If you are worried about ads making your beautifully design website look bad, you can try out this plugin. This plugin makes your Adsense  look soothing to the eye, by adding images adjacent to the ads. This also helps increase your click-through rate(CTR). However, don&#8217;t forget to add a line between the image and the ad, otherwise you would be voiding terms and conditions set up by Google.</p>
<p><a rel="nofollow" href="http://www.johntp.com/2006/09/14/wordpress-plugin-adsense-beautifier/">[Get the plugin]</a></p>
<h3>Adsense Earnings</h3>
<p>This plugin enables you to check your Adsense earning right in the WP dashboard. Comes really handy if you are one of those who have to check their earnings every 20 minutes! You can also check your earnings for a specific time period, or show the visitors how much cash you have earned for the day.</p>
<p><a rel="nofollow" href="http://adsense-wordpress-plugin.ayanev.com/what-is-adsense-earnings-plugin/">[Get the plugin]</a></p>
<h3>Adsense Injection</h3>
<p>If you have a blog with a lot of content, going through every article to post little adsense tags will be a tiresome task. Also, showing the ads same place every time on a page increases &#8216;banner blindness&#8217;, that is your regular visitors will stop noticing the ads eventually. Adsense injection solves this problem by inserting adsense codes randomly between paragraph(or line break tags) in a page. On a multi-post page(home, category, archive) it&#8217;ll inject one adsense per story. It lets you choose how many to show on single-post pages and how many ads to show at a time. The version 2.0 works for Yahoo! Publisher Network as well.</p>
<p><a rel="nofollow" href="http://wordpress-plugins.biggnuts.com/adsense-plugin/">[Get the plugin]</a></p>
<h3>Adsense Deluxe</h3>
<p>AdSense-Deluxe is an easy-to-use plugin for WordPress 1.5+ \ for quickly inserting Google Adsense or YPN  ads into your blog posts. It gives you some flexibility in deciding which posts ads appear in and perhaps some control of which ad format would display in any given blog post.</p>
<p><a rel="nofollow" href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/">[Get the plugin]</a></p>
<h3>WP-Amazon</h3>
<p>With WP-Amazon, the product catalogs from the mighty Amazon.com is available right into your Wordpress site. This plugin adds an &#8220;Insert from Amazon&#8221; link below the text area of your entry and the page editor. The link then launches a page that will allow you to search Amazon by product line. If you are located in the United States, you can also search restaurants with this plugin, as Amazon have added this feature in their E-commerce service 4.0.</p>
<p><a rel="nofollow" href="http://manalang.com/wp-amazon-12">[Get the plugin]</a></p>
<h3>Chitika eMiniMalls Sidebar Widget</h3>
<p>We covered Chitika and their &#8220;impulse merchandising&#8221; with eMiniMalls in the previous post. With this widget you can drag-and-drop an eMiniMall onto the sidebar of your site, with zero knowledge of HTML/JavaScript. Requires WordPress 2.0+.</p>
<p><a rel="nofollow" href="https://chitika.com/support/index.php?_m=downloads&amp;_a=viewdownload&amp;downloaditemid=7&amp;nav=0,1">[Get the widget]</a></p>
<h3>Bidvertiser WP Widget</h3>
<p>This widget lets you show ads from Bidvertiser, the alternative contextual ad serving program we covered in our earlier post. It&#8217;s easy to install and use. Also requires WordPress 2.0+.</p>
<p><a rel="nofollow" href="http://www.bidvertiser.com/bdv/bidvertiser/bdv_plugins.dbm">[Get the widget]</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tipsandtricks-hq.com%2Fadsense-integration-plugins-for-wordpress-1852&amp;linkname=Adsense%20Integration%20plugins%20for%20Wordpress"><img src="http://www.tipsandtricks-hq.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>
	<h4>Similar posts that you may like</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-simple-google-adsense-insertion-170" title="WordPress Plugin for Simple Google Adsense Insertion/Integration">WordPress Plugin for Simple Google Adsense Insertion/Integration</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/list-of-the-best-and-must-use-wordpress-plugins-535" title="List of the Best and Must Use WordPress Plugins">List of the Best and Must Use WordPress Plugins</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wp-table-plugin-for-wordpress-with-the-fatal-error-fix-575" title="WP-Table plugin for Wordpress with the fatal error fix">WP-Table plugin for Wordpress with the fatal error fix</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768" title="WordPress Simple Paypal Shopping Cart Plugin">WordPress Simple Paypal Shopping Cart Plugin</a> </li>
	<li><a href="http://www.tipsandtricks-hq.com/wordpress-plugin-for-category-specific-rss-feed-subscription-menu-325" title="WordPress Plugin for Category Specific RSS feed subscription menu">WordPress Plugin for Category Specific RSS feed subscription menu</a> </li>
</ul>

<img src="http://feeds.feedburner.com/~r/tipsandtricks-hq/~4/Bjoxi9dvZSc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tipsandtricks-hq.com/adsense-integration-plugins-for-wordpress-1852/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.tipsandtricks-hq.com/adsense-integration-plugins-for-wordpress-1852</feedburner:origLink></item>
	</channel>
</rss>
