<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Web Developers Help For Dummies - Cloud Computing,  Joomla, Prestashop and Worpress Expert</title>
	<link>http://www.virtuosomaster.com/tutorials</link>
	<description>joomla, cloud, prestashop, drupal, phpbb, IPB, wordpress, prestashop, creloaded, osc, magento,xcart,zen cart and a lot more tutorials</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:47:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.4" -->

	<item>
		<title>How to make WP Page Navi work in custom loop WP_query</title>
		<description><![CDATA[Problem:  Wp page navi doesnt work in custom loop in a page . Software: WordPress WP Page Navi Function: get_posts, query_posts , WP_Query, wp_pagenavi, get_query_var Solutions: 1. Add the custom $query to the wp page navi function: if(function_exists('wp_pagenavi')) wp_pagenavi(array( 'query' =&#62;$query )); 2. Add the value of page in your WP_query. $paged = get_query_var('paged') ? [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-make-wp-page-navi-work-in-custom-loop-wp_query/</link>
			</item>
	<item>
		<title>How to remove the REDVASE popup http://redvase.bravenet.com/deliver/</title>
		<description><![CDATA[Problem:How to remove the popup redvase website to your pc. Software: Hijackthis Malwarebytes Regedit Malware:  http://redvase.bravenet.com/deliver/creative_by_id/22219/18/1327376068 Solutions: no solution yet!]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-remove-the-redvase-popup-httpredvase-bravenet-comdeliver/</link>
			</item>
	<item>
		<title>Override Free Shipping Google Checkout and Ecommerce Templates</title>
		<description><![CDATA[Problem:  My clients want to have a free shipping cost in Ecommerce Templates powered website and he is using google checkout. I tied to set the googledefaultshipping to zero but it gives a $999 dollar cost shipping. For example: googledefaultshipping=0; Software: Ecommerce Templates 5.3.1 Google Checkout Solution: Google checkout look like accept only above zero [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/override-free-shipping-google-checkout-and-ecommerce-templates/</link>
			</item>
	<item>
		<title>Watermarks are gone after the contact form 7 submit</title>
		<description><![CDATA[Problem: How to display the watermark again after the forms submitted in contact Form 7 . Software: Contact form 7 WordPress 3.3.1 Solustion : Add the code below inside the $.fn.wpcf7ClearResponseOutput = function() { in scripts.js in contact form plugin folder. $(this).find(&#8216;.wpcf7-use-title-as-watermark&#8217;).each(function(i, n) { var input = $(n); input.val(input.attr(&#8216;title&#8217;)); input.addClass(&#8216;watermark&#8217;); }); If you are using [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/watermarks-are-gone-after-the-contact-form-7-submit/</link>
			</item>
	<item>
		<title>How to popup the thank you message in contact form 7 in wordpress thickbox</title>
		<description><![CDATA[Problem:   I want the thank you message popup in the contact form 7  plugin using thickbox instead of sliding. Software: WordPress 3.3.1 Thickbox Contact Form 7 Solution: 1. Install Auto Thickbox Plus Plugin 2. Edit Scripts.js in your contact form 7 plugin Look and comment : //    ro.addClass(&#8216;wpcf7-mail-sent-ok&#8217;); And add after that line: var url [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-popup-the-thank-you-message-in-contact-form-7-in-wordpress-thickbox/</link>
			</item>
	<item>
		<title>How to make different single post template in each category</title>
		<description><![CDATA[Problem:  How to display single post in different template or layout  under a specific category. Not like in page that you can specify the page template ( custom page template). Software: WordPress 3.3.1 Solution: 1. Create a different single post template like: single_default.php single_category1.php single_category2.php 2. Edit your single.php &#60;?php $post = $wp_query-&#62;post; wp_reset_query(); $cat [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-make-different-single-post-template-in-each-category/</link>
			</item>
	<item>
		<title>Prevent auto skype graphic formating plugin to all phone numbers</title>
		<description><![CDATA[Problem: Skype plugin in browser such as Chrome and Firefox auto convert or overwriting phone number in a page. Solutions 1: Use a special character : (570)­ &#38;shy; 555-1234 Solutions 2: Use inline CSS3 : (570)­&#60;span style=&#8221;display:none&#8221;&#62;&#38;nbsp;&#60;/span&#62; 555-1234 Solutions 3: Use WordPress Plugin : Prevent Skype Overwriting]]></description>
		<link>http://www.virtuosomaster.com/tutorials/prevent-auto-skype-graphic-formating-plugin-to-all-phone-numbers/</link>
			</item>
	<item>
		<title>How to display all the attached images of the postsWordPress</title>
		<description><![CDATA[Problem: How to display all the images you uploaded in the post without putting a shortcodes &#8220;[ gallery ]&#8221; in the WYSWYG Editor. Software: WordPress 3.3 Solution: 1. Edit your single.php  and add the code anywhere on the loop: &#60;?php echo do_shortcode('[ gallery ]'); ?&#62; Note : &#8220;[ gallery ]&#8221; has no space. I had [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-display-all-the-attached-images-of-the-postswordpress/</link>
			</item>
	<item>
		<title>How to redirect all 404 page, not found page dead links to your homepage wordpress</title>
		<description><![CDATA[Issue: How to redirect all the dead links to your homepage in wordpress. Solutions: 1. Add 404.php in your current template 2. Add the code below: &#60;?php header(&#8220;Status: 301 Moved Permanently&#8221;); header(&#8220;Location:http://www.yoursite.com&#8221;); ?&#62; Change yoursite.com with your domain.]]></description>
		<link>http://www.virtuosomaster.com/tutorials/how-to-redirect-all-404-page-not-found-page-dead-links-to-your-homepage-wordpress/</link>
			</item>
	<item>
		<title>Add onblur , onfocus attribute in contact form 7 text field</title>
		<description><![CDATA[Problem: How to add onblur and onfocus attribute to contact form 7  wordpress plugin text field. Solutions: Add the below code  to line 70 of modules/text.php if ( $value != '' ) { $atts .= ' onfocus="if (this.value == \'' . esc_attr( $value ) . '\') {this.value = \'\';}" onblur="if (this.value == \'\') {this.value = [...]]]></description>
		<link>http://www.virtuosomaster.com/tutorials/add-onblur-onfocus-attribute-in-contact-form-7-text-field/</link>
			</item>
</channel>
</rss>

