<?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>Fundaa.com &#187; Zen Cart</title>
	<atom:link href="http://fundaa.com/category/zen-cart/feed/" rel="self" type="application/rss+xml" />
	<link>http://fundaa.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 12:44:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dynamic Price Updater in Zencart</title>
		<link>http://fundaa.com/zen-cart/dynamic-price-updater-in-zencart/</link>
		<comments>http://fundaa.com/zen-cart/dynamic-price-updater-in-zencart/#comments</comments>
		<pubDate>Mon, 09 May 2011 07:32:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=246</guid>
		<description><![CDATA[<br/>Dynamic price updater is a module which u can use to update the price on the product info page of the Zen cart. When u select any check-box or select from drop down or input the quantity of the product it dynamically updates the price on the the product info page which is a very useful tool in the zen cart.
It uses the ajax and jscript to update the price dynamically. Click here to download the files

After downloading the file just include the files in your project as they are ...]]></description>
			<content:encoded><![CDATA[<br/><p>Dynamic price updater is a module which u can use to update the price on the product info page of the Zen cart. When u select any check-box or select from drop down or input the quantity of the product it dynamically updates the price on the the product info page which is a very useful tool in the zen cart.<br/><br />
It uses the ajax and jscript to update the price dynamically. <a href="http://chrome.me.uk/PriceUpdater.zip" target="_blank">Click here</a> to download the files<br/><br />
<br/></p>
<p>After downloading the file just include the files in your project as they are given in the folder structure you downloaded the file.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/zen-cart/dynamic-price-updater-in-zencart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zen cart admin coupon which gives amount deduction and free shipping</title>
		<link>http://fundaa.com/1/zen-cart-admin-coupon-which-gives-amount-deduction-and-free-shipping/</link>
		<comments>http://fundaa.com/1/zen-cart-admin-coupon-which-gives-amount-deduction-and-free-shipping/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 12:29:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=227</guid>
		<description><![CDATA[<br/>In zen cart that is default that you can create admin coupon to give amount deduction or free shipping ,
you can not give customer both benefit of amount deduction as well as free shipping,
to do that you have to add code in two files that are
1) includes/modules/order_total/ot_coupon.php
2) includes/templates/[your template]/popup_coupon_help/tpl_main_page.php
In file 1 ot_coupon.php
find the code as 

if ($od_amount['type'] == 'S') $order->info['shipping_cost'] = 0;
      $order->info['total'] = $order->info['total'] - $od_amount['total'];
      if (DISPLAY_PRICE_WITH_TAX == 'true') {
        $od_amount['total'] ...]]></description>
			<content:encoded><![CDATA[<br/><p>In zen cart that is default that you can create admin coupon to give amount deduction or free shipping ,<br />
you can not give customer both benefit of amount deduction as well as free shipping,</p>
<p>to do that you have to add code in two files that are</p>
<p>1) includes/modules/order_total/ot_coupon.php<br />
2) includes/templates/[your template]/popup_coupon_help/tpl_main_page.php</p>
<p>In file 1 ot_coupon.php</p>
<p>find the code as </p>
<p><code><br />
if ($od_amount['type'] == 'S') $order->info['shipping_cost'] = 0;<br />
      $order->info['total'] = $order->info['total'] - $od_amount['total'];<br />
      if (DISPLAY_PRICE_WITH_TAX == 'true') {<br />
        $od_amount['total'] += $tax;<br />
      }<br />
      if ($this->calculate_tax == "Standard") $order->info['total'] -= $tax;<br />
      if ($order->info['total'] < 0) $order->info['total'] = 0;<br />
      $order->info['tax'] = $order->info['tax'] - $tax;<br />
      $this->output[] = array('title' => $this->title . ': ' . $this->coupon_code . ' :',<br />
                              'text' => '-' . $currencies->format($od_amount['total']),<br />
                              'value' => $od_amount['total']);<br />
</code></p>
<p>replace it with</p>
<p><code><br />
if ($od_amount['type'] == 'S') $order->info['shipping_cost'] = 0;<br />
	// harry<br />
      if ($od_amount['type'] == 'S' &#038;&#038; is_numeric($od_amount['coupon_amount']) )<br />
	{<br />
		$order->info['total'] = $order->info['total'] - $od_amount['coupon_amount'];<br />
	}<br />
      $order->info['total'] = $order->info['total'] - $od_amount['total'];<br />
      if (DISPLAY_PRICE_WITH_TAX != 'true') {<br />
        $order->info['total'] -= $tax;<br />
      }<br />
      $order->info['tax'] = $order->info['tax'] - $tax;<br />
      //      if ($this->calculate_tax == "Standard") $order->info['total'] -= $tax;<br />
      if ($order->info['total'] < 0) $order->info['total'] = 0;<br />
      $this->output[] = array('title' => $this->title . ': ' . $this->coupon_code . ' :',<br />
                              'text' => '-' . $currencies->format($od_amount['total']+$od_amount['coupon_amount']),<br />
                              'value' => $od_amount['total']+$od_amount['coupon_amount']);<br />
</code></p>
<p>find<br />
<code><br />
if (isset($_SESSION['shipping_tax_description']) &#038;&#038; $_SESSION['shipping_tax_description'] != '') {<br />
              $od_amount['tax_groups'][$_SESSION['shipping_tax_description']] = $od_amount['tax'];<br />
            }<br />
            return $od_amount;<br />
</code></p>
<p>replace it with<br />
<code><br />
            if (isset($_SESSION['shipping_tax_description']) &#038;&#038; $_SESSION['shipping_tax_description'] != '') {<br />
              $od_amount['tax_groups'][$_SESSION['shipping_tax_description']] = $od_amount['tax'];<br />
            }<br />
                // harry<br />
		$od_amount['coupon_amount'] = $coupon->fields['coupon_amount'];<br />
            return $od_amount;<br />
</code></p>
<p>and in file 2 tpl_main_page.php</p>
<p>find<br />
<code><br />
case 'S':<br />
    $text_coupon_help .= TEXT_COUPON_HELP_FREESHIP;<br />
</code></p>
<p>replace it with<br />
<code><br />
case 'S':<br />
	if ( is_numeric($coupon->fields['coupon_amount']) )<br />
	{<br />
		$text_coupon_help .= sprintf(TEXT_COUPON_HELP_FIXED, $currencies->format($coupon->fields['coupon_amount']));<br />
	}<br />
    $text_coupon_help .= TEXT_COUPON_HELP_FREESHIP;<br />
</code></p>
<p>and its done&#8230;&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/1/zen-cart-admin-coupon-which-gives-amount-deduction-and-free-shipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zencart : How to add banners in the zencart</title>
		<link>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/</link>
		<comments>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 10:24:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=179</guid>
		<description><![CDATA[<br/>To add the banners in the zencart just follow the three steps.
1. Open the zencart database and insert one record in the &#8220;Configurations&#8221; table.

Keep the configuration_id null(it will update automatically)
Write the title for e.g.&#8217;Banner Display Group All pages left&#8216; in configuration_title.Layout Settings on the Admin side.
In configuration_key write the tag &#8216;SHOW_BANNERS_GROUP_SET10&#8216;
Note: SET10 is the id of sets of banner. Upto SET9 all are the default banners of zencart.Update the SET no. everytime you want to add banners such as SHOW_BANNERS_GROUP_SET11,SHOW_BANNERS_GROUP_SET12 and so on&#8230;.
In the configuration_value write any value such as&#8217;left_banner2&#8216;
Note ...]]></description>
			<content:encoded><![CDATA[<br/><p><strong>To add the banners in the zencart just follow the three steps.</strong></p>
<p>1. Open the zencart database and insert one record in the &#8220;<strong>Configurations</strong>&#8221; table.</p>
<ol>
<li>Keep the configuration_id null(it will update automatically)</li>
<li>Write the title for e.g.&#8217;<strong>Banner Display Group All pages left</strong>&#8216; in configuration_title.</ Note : This title will be displayed in the Configuration->Layout Settings on the Admin side.</li>
<li>In configuration_key write the tag &#8216;<strong>SHOW_BANNERS_GROUP_SET10</strong>&#8216;
<p>Note: SET10 is the id of sets of banner. Upto SET9 all are the default banners of zencart.Update the SET no. everytime you want to add banners such as SHOW_BANNERS_GROUP_SET11,SHOW_BANNERS_GROUP_SET12 and so on&#8230;.</li>
<li>In the configuration_value write any value such as&#8217;<strong>left_banner2</strong>&#8216;
<p>Note : This value will be the group name of your banner and it will be added in the dropdown list of the banner groups when you will add the new banner from admin.</li>
<li>Add any description in &#8220;<strong>configuration_description</strong>&#8221; field.</li>
<li>Just write &#8216;<strong>19</strong>&#8216; in the &#8220;<strong>configuration_group_id</strong>&#8221; as 19 is the id for the banners.</li>
<li>Just give the unique id for the &#8220;<strong>sort_order field</strong>&#8221; for the group_id 19.Generally start after id <strong>75</strong>.The value must increment every time you add the new banners.</li>
<li>Keep all other fields as it as and save the record.</li>
</ol>
<p>2. On the admin side click on <strong>new banner</strong> button in the Banner Manager.</p>
<ol>
<li>Give the title for the banner such as <strong>New Banner</strong>.</li>
<li>Give the url in url box if you want to add such as <strong>http://www.google.com</strong></li>
<li>Now select the group from the dropdown box.Your newly created group will be added there. Select it.</li>
<li>Upload the image you want to display as banner and click on insert.</li>
</ol>
<p>Your banner has been created now.</p>
<p>3. To display the banner in the site just copy the following code and paste it where you want to display the banner.</p>
<p><pre class="brush: php;">
 &lt;?php
  if (SHOW_BANNERS_GROUP_SET10 != '' &amp;&amp; $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET10)) {
if ($banner-&gt;RecordCount() &gt; 0) {
echo zen_display_banner('static', $banner);
    }
  }
?&gt;</pre>
</p>
<p>That&#8217;s it.You can see the banner now. I hope it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/zen-cart/zencart-how-to-add-banners-in-the-zencart/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blank page problem in zencart [SOLVED]</title>
		<link>http://fundaa.com/solved-issues/blank-page-problem-in-zencart-solved/</link>
		<comments>http://fundaa.com/solved-issues/blank-page-problem-in-zencart-solved/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 06:54:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solved Issues]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=138</guid>
		<description><![CDATA[<br/>some has experienced that when clicked on some link blank page is displayed 
that problem is there because of add page process of zencart
to add page in zencart we have to create four pages
    *  A new directory, includes/modules/pages/myNewPage/, containing a file called header_php.php 
    * A new file in the directory includes/templates/template_default/templates called tpl_myNewPage_default.php 
    * A new file, includes/extra_datafiles/myNewPage.php, defining your new page&#8217;s filename for the Zen Cart™ system 
    * A new language file, ...]]></description>
			<content:encoded><![CDATA[<br/><p>some has experienced that when clicked on some link blank page is displayed </p>
<p>that problem is there because of add page process of zencart</p>
<p>to add page in zencart we have to create four pages</p>
<p>    *  A new directory, includes/modules/pages/myNewPage/, containing a file called header_php.php </p>
<p>    * A new file in the directory includes/templates/template_default/templates called tpl_myNewPage_default.php </p>
<p>    * A new file, includes/extra_datafiles/myNewPage.php, defining your new page&#8217;s filename for the Zen Cart™ system </p>
<p>    * A new language file, includes/languages/english/myNewPage.php </p>
<p>there is problem in  includes/extra_datafiles/myNewPage.php</p>
<p>so dont add file in that folder may your problem solved ! ! !</p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/solved-issues/blank-page-problem-in-zencart-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

