<?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>Welcome to Dhrusya Solutions &#187; Virtuemart</title>
	<atom:link href="http://demo.dhrusya.com/joomla/virtuemart/feed/" rel="self" type="application/rss+xml" />
	<link>http://demo.dhrusya.com</link>
	<description>Web Development</description>
	<lastBuildDate>Mon, 29 Sep 2014 09:36:59 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Show errors in joomla</title>
		<link>http://demo.dhrusya.com/show-errors-in-joomla-3/</link>
		<comments>http://demo.dhrusya.com/show-errors-in-joomla-3/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 09:12:07 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=210</guid>
		<description><![CDATA[Sometimes we may be struck with some errors like white  [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Sometimes we may be struck with some errors like white screen of death and other errors.<br />
Then to know what causing the error simplifies our problem. To enable errors on joomla website do the following.</p>
<p>Put the following code at the END of the configuration.php file BEFORE the closing ?></p>
<blockquote><p>
ini_set( &#8216;display_errors&#8217;, true );<br />
error_reporting( E_ALL );
</p></blockquote>
<p>And also you can try following tips too,</p>
<p>1. Check server error logs (not access logs) if you have access to them. (cPanel or other control panels often allow this)<br />
2. Go to Joomla Administration → Global configuration and enable Error Reporting to Maximum, you can also turn on debugging.<br />
3. Check the source of the white page – there might be still some HTML/Errors in the Page Source (Look in your web browser for the “View Source” option)</p>
<p>Hope these helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/show-errors-in-joomla-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To show price in price column of  virtuemart cart page</title>
		<link>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-3/</link>
		<comments>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-3/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 09:03:30 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=199</guid>
		<description><![CDATA[Place following code in that in default_pricelist.php p [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Place following code in that
<td> in default_pricelist.php page<br />
echo $this->currencyDisplay->createPriceDiv (&#8216;priceWithoutTax&#8217;, &#8221;, $this->cart->pricesUnformatted[$pkey], FALSE);</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug fix for Terms of Service in Checkout of Virtuemart</title>
		<link>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-3/</link>
		<comments>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-3/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 09:02:32 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=197</guid>
		<description><![CDATA[The Terms of Service on the cart is not being validated [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>The Terms of Service on the cart is not being validated before the user goes to the checkout. (Virtuemart 2.0.20b, Joomla 2.5.9)</strong></p>
<p>The fix is to add the following views/cart/tmpl/default.php (after line 61)</p>
<p>$document->addScriptDeclaration (&#8221;<br />
	jQuery(document).ready(function($) {<br />
		$(&#8216;a.vm-button-correct&#8217;).click(function(event)<br />
			{<br />
				if( $(&#8216;input#tosAccepted&#8217;).is(&#8216;:checked&#8217;) )<br />
				{<br />
					document.checkoutForm.submit();<br />
				}<br />
				else<br />
				{<br />
					$(&#8216;a.terms-of-service&#8217;).css(&#8216;background-color&#8217;, &#8216;red&#8217;);<br />
				}<br />
			});<br />
		});<br />
	&#8220;);</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to apply discount to a single product in Virtuemart Joomla?</title>
		<link>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-3/</link>
		<comments>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-3/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 09:01:48 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=195</guid>
		<description><![CDATA[There are two ways: 1. variant: create a product catego [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>There are two ways:</strong></p>
<p>1. variant:</p>
<p>create a product category: discount 20%</p>
<p>unpublish this category</p>
<p>go to your calculation rule settings -> choose this product category</p>
<p>go to your product and choose your calculation rule as discount</p>
<p>2. variant:</p>
<p>go to your product</p>
<p>product pricing -> add your discounted price in override field -> choose overwrite final or overwrite price to be taxed</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show errors in joomla</title>
		<link>http://demo.dhrusya.com/show-errors-in-joomla-2/</link>
		<comments>http://demo.dhrusya.com/show-errors-in-joomla-2/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 08:55:26 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=182</guid>
		<description><![CDATA[Sometimes we may be struck with some errors like white  [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Sometimes we may be struck with some errors like white screen of death and other errors.<br />
Then to know what causing the error simplifies our problem. To enable errors on joomla website do the following.</p>
<p>Put the following code at the END of the configuration.php file BEFORE the closing ?></p>
<blockquote><p>
ini_set( &#8216;display_errors&#8217;, true );<br />
error_reporting( E_ALL );
</p></blockquote>
<p>And also you can try following tips too,</p>
<p>1. Check server error logs (not access logs) if you have access to them. (cPanel or other control panels often allow this)<br />
2. Go to Joomla Administration → Global configuration and enable Error Reporting to Maximum, you can also turn on debugging.<br />
3. Check the source of the white page – there might be still some HTML/Errors in the Page Source (Look in your web browser for the “View Source” option)</p>
<p>Hope these helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/show-errors-in-joomla-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To show price in price column of  virtuemart cart page</title>
		<link>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-2/</link>
		<comments>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-2/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 08:54:29 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=178</guid>
		<description><![CDATA[Place following code in that in default_pricelist.php p [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Place following code in that
<td> in default_pricelist.php page<br />
echo $this->currencyDisplay->createPriceDiv (&#8216;priceWithoutTax&#8217;, &#8221;, $this->cart->pricesUnformatted[$pkey], FALSE);</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/to-show-price-in-price-column-of-virtuemart-cart-page-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug fix for Terms of Service in Checkout of Virtuemart</title>
		<link>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-2/</link>
		<comments>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-2/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 08:53:40 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=173</guid>
		<description><![CDATA[The Terms of Service on the cart is not being validated [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>The Terms of Service on the cart is not being validated before the user goes to the checkout. (Virtuemart 2.0.20b, Joomla 2.5.9)</strong></p>
<p>The fix is to add the following views/cart/tmpl/default.php (after line 61)</p>
<p>$document->addScriptDeclaration (&#8221;<br />
	jQuery(document).ready(function($) {<br />
		$(&#8216;a.vm-button-correct&#8217;).click(function(event)<br />
			{<br />
				if( $(&#8216;input#tosAccepted&#8217;).is(&#8216;:checked&#8217;) )<br />
				{<br />
					document.checkoutForm.submit();<br />
				}<br />
				else<br />
				{<br />
					$(&#8216;a.terms-of-service&#8217;).css(&#8216;background-color&#8217;, &#8216;red&#8217;);<br />
				}<br />
			});<br />
		});<br />
	&#8220;);</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/bug-fix-for-terms-of-service-in-checkout-of-virtuemart-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to apply discount to a single product in Virtuemart Joomla?</title>
		<link>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-2/</link>
		<comments>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-2/#comments</comments>
		<pubDate>Wed, 11 Jun 2014 08:52:20 +0000</pubDate>
		<dc:creator><![CDATA[wp-admin]]></dc:creator>
				<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://demo.dhrusya.com/?p=167</guid>
		<description><![CDATA[There are two ways: 1. variant: create a product catego [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>There are two ways:</strong></p>
<p>1. variant:</p>
<p>create a product category: discount 20%</p>
<p>unpublish this category</p>
<p>go to your calculation rule settings -> choose this product category</p>
<p>go to your product and choose your calculation rule as discount</p>
<p>2. variant:</p>
<p>go to your product</p>
<p>product pricing -> add your discounted price in override field -> choose overwrite final or overwrite price to be taxed</p>
]]></content:encoded>
			<wfw:commentRss>http://demo.dhrusya.com/how-to-apply-discount-to-a-single-product-in-virtuemart-joomla-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
