<?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></title>
	<atom:link href="http://vipinsahu.com/feed" rel="self" type="application/rss+xml" />
	<link>http://vipinsahu.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Apr 2012 11:15:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Shop By Category in Magento HomePage</title>
		<link>http://vipinsahu.com/shop-by-category-in-magento-homepage</link>
		<comments>http://vipinsahu.com/shop-by-category-in-magento-homepage#comments</comments>
		<pubDate>Wed, 22 Feb 2012 13:44:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=516</guid>
		<description><![CDATA[Shop By Category in Magento HomePage : or Layered navigation in CMS page or front page . This is Very common problem  with every magento developers . After Banging my head here i am writing a simple back for this . This will display the output like this on homepage of magento  So here is complete solution . First [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Shop By Category in Magento HomePage : </strong>or Layered navigation in CMS page or front page . This is Very common problem  with every magento developers . After Banging my head here i am writing a simple back for this . This will display the output like this on homepage of magento <a href="http://vipinsahu.com/wp-content/uploads/2012/02/FILTER.png" rel="lightbox[516]"><img class="aligncenter size-full wp-image-517" title="Shop By Category" src="http://vipinsahu.com/wp-content/uploads/2012/02/FILTER.png" alt="Shop By Category" width="231" height="410" /></a></p>
<p>So here is complete solution . First of all go to CMS page of your homepage and add this refrence code in your design <strong>Layout Update XML </strong>tab</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;left&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;block</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;catalog/layer_view&quot;</span> <span style="color: #000066;">before</span>=<span style="color: #ff0000;">&quot;-&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;catalog.leftnav&quot;</span> <span style="color: #000066;">after</span>=<span style="color: #ff0000;">&quot;currency&quot;</span> <span style="color: #000066;">template</span>=<span style="color: #ff0000;">&quot;catalog/layer/view.phtml&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>This will show the above picture result but when you&#8217;ll mouse over on it it will show the link like this</p>
<p>example.com/?cat=13 or similar like that but when you&#8217;ll click on it  , it will not work . so here is the million dollar hack for it</p>
<p>go to <strong> app/code/core/Mage/Catalog/Model/Layer/Filter </strong>and open item.php</p>
<p>and replace your <strong>getUrl() </strong>function to the following one</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getUrl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getFilter</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> instanceof Mage_Catalog_Model_Layer_Filter_Category<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$category</span> <span style="color: #339933;">=</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">getModel</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'catalog/category'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">return</span> <span style="color: #000088;">$category</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUrl</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
                <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getFilter</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getRequestVar</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
                Mage<span style="color: #339933;">::</span><span style="color: #004000;">getBlockSingleton</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'page/html_pager'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPageVarName</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">null</span> <span style="color: #666666; font-style: italic;">// exclude current page from urls</span>
            <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">return</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">getUrl</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'*/*/*'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'_current'</span><span style="color: #339933;">=&gt;</span>true<span style="color: #339933;">,</span> <span style="color: #0000ff;">'_use_rewrite'</span><span style="color: #339933;">=&gt;</span>true<span style="color: #339933;">,</span> <span style="color: #0000ff;">'_query'</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span></pre></div></div>

<p>enjoy the Magento Coding</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/shop-by-category-in-magento-homepage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Facebook NewsFeeds Documentation</title>
		<link>http://vipinsahu.com/joomla-facebook-newsfeeds-documentation</link>
		<comments>http://vipinsahu.com/joomla-facebook-newsfeeds-documentation#comments</comments>
		<pubDate>Mon, 13 Feb 2012 15:09:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=512</guid>
		<description><![CDATA[Joomla Facebook NewsFeeds Documentation : If you are running your online business or site and you dont have a facebook newsfeed , this means you are backward or you dont know the importance of social world . Thats why webkul  created an awesome module for fetching your profile newsfeeds in to joomla site automatically . Please [...]]]></description>
			<content:encoded><![CDATA[<h2><span style="color: #800000;">Joomla Facebook NewsFeeds Documentation :</span></h2>
<p>If you are running your online business or site and you dont have a facebook newsfeed , this means you are backward or you dont know the importance of social world . Thats why <a title="facebook newsfeeds in Joomla" href="http://webkul.com">webkul</a>  created an awesome module for fetching your profile newsfeeds in to joomla site automatically . Please have a look at the module admin</p>
<p><a href="http://vipinsahu.com/wp-content/uploads/2012/02/Screen-shot-2012-02-13-at-8.23.17-PM.png" rel="lightbox[512]"><img class="aligncenter size-full wp-image-513" title="facebook News feeds" src="http://vipinsahu.com/wp-content/uploads/2012/02/Screen-shot-2012-02-13-at-8.23.17-PM.png" alt="facebook News feeds" width="449" height="441" /></a></p>
<p>So just put the access token and thats it , it is so simple to use .</p>
<h2><span style="color: #800000;"><strong>How to Get Access Token : </strong></span></h2>
<p><strong></strong>This is the tricky but simple part , just follow the simple steps as below</p>
<p><strong>Step 1: </strong>Go to this link and click on – <a href="http://www.webkul.com/access-token">http://www.webkul.com/access-token</a><br />
<strong>Alternate Access token generation link</strong> : <a title="Facebook wall post" href="http://www.linkdoo.com/access-token/" target="_blank">http://www.linkdoo.com/access-token</a>   or    <a href="http://linkdoo.com/beta/access-token/" target="_blank">http://linkdoo.com/beta/access-token/</a></p>
<p><strong><a href="http://vipinsahu.com/wp-content/uploads/2011/06/access-token-.png" rel="lightbox[341]"><img class="aligncenter" title="access token" src="http://vipinsahu.com/wp-content/uploads/2011/06/access-token-.png" alt="access token" width="503" height="202" /></a></strong></p>
<p><span style="color: #800000;"><strong>Frequently Asked Questions (FAQ’s)</strong></span></p>
<p><strong>1</strong>-  <strong>(#4) Application request limit reached : </strong> If you are getting this warning , then  use alternate access token genration link as given below</p>
<p><a href="http://www.webkul.com/access-token">http://www.webkul.com/access-token</a></p>
<p><a title="Facebook wall post" href="http://www.linkdoo.com/access-token/" target="_blank">http://www.linkdoo.com/access-token</a></p>
<p><a href="http://linkdoo.com/beta/access-token/" target="_blank">http://linkdoo.com/beta/access-token/</a></p>
<p>&nbsp;</p>
<p><span style="color: #800000;"><strong>Where is my Joomla 1.7 Facebook wall feeds ?</strong> </span>– Joomla 1.6 facebook wall feeds will work perfectly in joomla 1.7 as well .</p>
<p>&nbsp;</p>
<p><strong>Thats it <img src="http://vipinsahu.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /> Enjoy the awesome module in your web site .</strong></p>
<p>For any query or doubt feel free to contact us :</p>
<p><strong>Email</strong> : sahu.vipin@webkul.com</p>
<p><strong>Skype</strong> : li_vipin.sahu</p>
<p><strong>Gtalk</strong> : sahu.vipin</p>
<p><strong>MSN</strong> : vipinsahu</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/joomla-facebook-newsfeeds-documentation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Current Category Name and URL</title>
		<link>http://vipinsahu.com/magento-current-category-name-and-url</link>
		<comments>http://vipinsahu.com/magento-current-category-name-and-url#comments</comments>
		<pubDate>Mon, 13 Feb 2012 14:03:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=508</guid>
		<description><![CDATA[Magento Current Category Name and Link : Magento API is really wonderful . Current category is really important in product page  and it is useful from A/B testing point of view . So if you want to add linkable current category in magento  . Go to this location app/design/frontend/base/default/template/catalog/product and add following code before &#60;div id=&#8221;messages_product_view&#8221;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Magento Current Category Name and Link : </strong>Magento API is really wonderful . Current category is really important in product page  and it is useful from A/B testing point of view . So if you want to add linkable current category in magento  . Go to this location</p>
<p>app/design/frontend/base/default/template/catalog/product</p>
<p>and add following code before &lt;div id=&#8221;messages_product_view&#8221;&gt; here is sample code</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;span&gt;&lt;a href=”<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">registry</span><span style="color: #009900;">&#40;</span>‘current_category’<span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getUrl</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>”&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">registry</span><span style="color: #009900;">&#40;</span>‘current_category’<span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getName</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;/a&gt; &lt;/span&gt;</pre></div></div>

<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/magento-current-category-name-and-url/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Custom option Alignment</title>
		<link>http://vipinsahu.com/magento-custom-option-alignment</link>
		<comments>http://vipinsahu.com/magento-custom-option-alignment#comments</comments>
		<pubDate>Fri, 10 Feb 2012 07:00:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=501</guid>
		<description><![CDATA[Magento Custom option Alignment : We were playing with a magento store for mass update of custom option using custom option template  but found a weird problem of alignement with custom option after banging my head finally i found the solution . HERE is simple fix i just choose Display product options in  from design tab and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Magento Custom option Alignment : </strong>We were playing with a magento store for mass update of custom option using <a title="mass custom option template" href="http://webkul.com/blog/magento-mass-update-of-custom-options/" target="_blank">custom option template</a>  but found a weird problem of alignement with custom option after banging my head finally i found the solution .</p>
<p>HERE is simple fix i just choose <strong>Display product options in  </strong>from design tab and selected &#8220;block after info column&#8221;  instead of  &#8221;product info column&#8221; and BOOM alignment issue has been solved as per the below image</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://vipinsahu.com/wp-content/uploads/2012/02/Screen-shot-2012-02-10-at-12.26.51-PM.png" rel="lightbox[501]"><img class="aligncenter  wp-image-502" title="Magento Bulk custom option" src="http://vipinsahu.com/wp-content/uploads/2012/02/Screen-shot-2012-02-10-at-12.26.51-PM.png" alt="Magento Bulk custom option" width="550" height="322" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/magento-custom-option-alignment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento : cache_dir must be a directory</title>
		<link>http://vipinsahu.com/magento-cache_dir-must-be-a-directory</link>
		<comments>http://vipinsahu.com/magento-cache_dir-must-be-a-directory#comments</comments>
		<pubDate>Mon, 14 Nov 2011 23:54:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=477</guid>
		<description><![CDATA[cache_dir must be a directory : This problem came generally when you move your magento store to another host or server . There are mainly two solution for this problem 1 -  Make sure your cache directory is writable or you can make writable to var folder of magento but sometimes this situation does not [...]]]></description>
			<content:encoded><![CDATA[<p><strong>cache_dir must be a directory : </strong>This problem came generally when you move your magento store to another host or server . There are mainly two solution for this problem</p>
<p><strong>1</strong> -  Make sure your <strong>cache</strong> directory is writable or you can make writable to <strong>var</strong> folder of magento</p>
<p>but sometimes this situation does not work so here is the alternate solution. Go to this location <em>lib/Zend/Cache/Backend/</em></p>
<p>and open file.php file you&#8217;ll see the code something like this</p>
<pre class="brush:php">protected $_options = array(
        'cache_dir' =&gt; null,
        'file_locking' =&gt; true,
        'read_control' =&gt; true,
        'read_control_type' =&gt; 'crc32',
        'hashed_directory_level' =&gt; 0,
        'hashed_directory_umask' =&gt; 0700,
        'file_name_prefix' =&gt; 'zend_cache',
        'cache_file_umask' =&gt; 0600,
        'metadatas_array_max_size' =&gt; 100
    );</pre>
<p>change this code as below</p>
<pre class="brush:php">protected $_options = array(
        'cache_dir' =&gt; '/var/www/html/webkul/magento/tmp',
        'file_locking' =&gt; true,
        'read_control' =&gt; true,
        'read_control_type' =&gt; 'crc32',
        'hashed_directory_level' =&gt; 0,
        'hashed_directory_umask' =&gt; 0700,
        'file_name_prefix' =&gt; 'zend_cache',
        'cache_file_umask' =&gt; 0600,
        'metadatas_array_max_size' =&gt; 100
    );</pre>
<p>assign path of cache_dir as per your configuration .</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/magento-cache_dir-must-be-a-directory/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks your for your subscription magento</title>
		<link>http://vipinsahu.com/thanks-your-for-your-subscription-magento</link>
		<comments>http://vipinsahu.com/thanks-your-for-your-subscription-magento#comments</comments>
		<pubDate>Mon, 14 Nov 2011 18:08:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=474</guid>
		<description><![CDATA[Thanks your for your subscription magento : This is an alert message when any user is signing up for magento newsletter but suppose that if any magento administrator want to edit this message , so you cant do it from magento admin . This text is coming from the SubscriberController.php Go to this file at [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Thanks your for your subscription magento : </strong>This is an alert message when any user is signing up for magento newsletter but suppose that if any magento administrator want to edit this message , so you cant do it from magento admin . This text is coming from the <strong>SubscriberController.php</strong></p>
<p>Go to this file at <strong>/app/code/core/Mage/</strong><wbr><strong>Newsletter/controllers/</strong><wbr><strong>SubscriberController.php </strong>and change it as per your need.</wbr></wbr></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/thanks-your-for-your-subscription-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento : Add CSS / JS for Specific Category</title>
		<link>http://vipinsahu.com/magento-add-css-js-for-specific-category</link>
		<comments>http://vipinsahu.com/magento-add-css-js-for-specific-category#comments</comments>
		<pubDate>Tue, 08 Nov 2011 08:19:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=470</guid>
		<description><![CDATA[Magento : Add CSS / JS for Specific Category : This is very well known and general issues and tons of crap tutorial is also there in the internet , here is the simplest solution . Lets say suppose you want to add a css , so create a css file  so i just create [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Magento : Add CSS / JS for Specific Category : </strong>This is very well known and general issues and tons of crap tutorial is also there in the internet , here is the simplest solution . Lets say suppose you want to add a css , so create a css file  so i just create a css file customcategory.css inside</p>
<p>/skin/frontend/default/default/css</p>
<p><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">.category-description {</span></p>
<pre class="brush:css">    height: 475px !important;
    margin: 0 0 10px;
}</pre>
<p>now add the below code in manage category-&gt;choose the category -&gt;custom design and under custom layout update texarea put this</p>
<pre class="brush:xml">&lt;reference name="head"&gt;
&lt;action method="addCss"&gt;&lt;stylesheet&gt;css/customcategory.css&lt;/stylesheet&gt;&lt;/action&gt;
&lt;/reference&gt;</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/magento-add-css-js-for-specific-category/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento : WYSIWYG insert/edit link not working</title>
		<link>http://vipinsahu.com/magento-wysiwyg-insertedit-link-not-working</link>
		<comments>http://vipinsahu.com/magento-wysiwyg-insertedit-link-not-working#comments</comments>
		<pubDate>Mon, 07 Nov 2011 11:52:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=468</guid>
		<description><![CDATA[WYSIWYG insert/edit link not working :  I stumbled upon this problem when i was playing with magento wysiwyg , and found that this is happening due to conflict in java scripts actually i installed free editor from magento connect so i uninstalled that module htough connect and everything is awesome again]]></description>
			<content:encoded><![CDATA[<p><strong>WYSIWYG insert/edit link not working :  </strong>I stumbled upon this problem when i was playing with magento wysiwyg , and found that this is happening due to conflict in java scripts actually i installed free editor from magento connect so i uninstalled that module htough connect and everything is awesome again</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/magento-wysiwyg-insertedit-link-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add CMS page in Magento Category Navigation</title>
		<link>http://vipinsahu.com/add-cms-page-in-magento-category-navigation</link>
		<comments>http://vipinsahu.com/add-cms-page-in-magento-category-navigation#comments</comments>
		<pubDate>Fri, 04 Nov 2011 04:43:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=463</guid>
		<description><![CDATA[CMS page in Magento Category : This is common issue when we are dealing with magento navigation , means suppose we want to add a cms page in to magento top category , there is a simple trick .BTW there are two methods &#8211; The most easy one is you can add it via static block . 1 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CMS page in Magento Category : </strong>This is common issue when we are dealing with <a title="cms page in magento catagory" href="http://www.magentocommerce.com/magento-connect/vertical-menu.html" target="_blank">magento navigation</a> , means suppose we want to add a cms page in to magento top category , there is a simple trick .BTW there are two methods &#8211; The most easy one is you can add it via <strong>static block </strong>.</p>
<p>1 &#8211;  create a static block as per your ease</p>
<p>2 &#8211; now go to catalog-&gt; manage category and under display setting choose your cms block but make sure display mode must be static bloock only as per this picture</p>
<p><a href="http://vipinsahu.com/wp-content/uploads/2011/11/demo.png" rel="lightbox[463]"><img class="size-full wp-image-464 aligncenter" title="CMS page in Magento Category " src="http://vipinsahu.com/wp-content/uploads/2011/11/demo.png" alt="CMS page in Magento Category " width="571" height="350" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/add-cms-page-in-magento-category-navigation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invalid backend model specified: catalog/attribute_backend_customlayoutupdate</title>
		<link>http://vipinsahu.com/invalid-backend-model-specified-catalogattribute_backend_customlayoutupdate</link>
		<comments>http://vipinsahu.com/invalid-backend-model-specified-catalogattribute_backend_customlayoutupdate#comments</comments>
		<pubDate>Wed, 19 Oct 2011 01:57:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://vipinsahu.com/?p=454</guid>
		<description><![CDATA[Invalid backend model specified: catalog/attribute_backend_customlayoutupdate: This is really common problem and i was searching a lot for this issue but got almost uncompleted solution&#8217;s , so here is the working one .Open your database using phpmyadmin and run this query SELECT * FROM `webkul`.`eav_attribute` WHERE ( `attribute_id` LIKE '%customlayoutupdate%' OR `entity_type_id` LIKE '%customlayoutupdate%' OR `attribute_code` LIKE '%customlayoutupdate%' [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Invalid backend model specified: catalog/attribute_backend_customlayoutupdate: </strong>This is really common problem and i was searching a lot for this issue but got almost uncompleted solution&#8217;s , so here is the working one .Open your database using phpmyadmin and run this query</p>
<pre class="brush:sql">SELECT *
FROM `webkul`.`eav_attribute`
WHERE (
`attribute_id` LIKE '%customlayoutupdate%'
OR `entity_type_id` LIKE '%customlayoutupdate%'
OR `attribute_code` LIKE '%customlayoutupdate%'
OR `attribute_model` LIKE '%customlayoutupdate%'
OR `backend_model` LIKE '%customlayoutupdate%'
OR `backend_type` LIKE '%customlayoutupdate%'
OR `backend_table` LIKE '%customlayoutupdate%'
OR `frontend_model` LIKE '%customlayoutupdate%'
OR `frontend_input` LIKE '%customlayoutupdate%'
OR `frontend_label` LIKE '%customlayoutupdate%'
OR `frontend_class` LIKE '%customlayoutupdate%'
OR `source_model` LIKE '%customlayoutupdate%'
OR `is_required` LIKE '%customlayoutupdate%'
OR `is_user_defined` LIKE '%customlayoutupdate%'
OR `default_value` LIKE '%customlayoutupdate%'
OR `is_unique` LIKE '%customlayoutupdate%'
OR `note` LIKE '%customlayoutupdate%'
)</pre>
<p>BOOM You are done <img src='http://vipinsahu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  make sure you changed webkul as per your database name</p>
]]></content:encoded>
			<wfw:commentRss>http://vipinsahu.com/invalid-backend-model-specified-catalogattribute_backend_customlayoutupdate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 17/21 queries in 0.010 seconds using disk: basic

Served from: vipinsahu.com @ 2012-05-20 06:39:44 -->
