<?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>Yartap Marketing and Web Development</title> <atom:link href="http://www.yartapmarketing.com/blog/feed/" rel="self" type="application/rss+xml" /><link>http://www.yartapmarketing.com/blog</link> <description>Magento &#124; Joomla &#124; Facebook apps &#124; SEO &#124; Marketing</description> <lastBuildDate>Sat, 08 Jan 2011 03:36:51 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>Magento Admin &#8211; link to product from category page</title><link>http://www.yartapmarketing.com/blog/magento-admin-link-to-product-from-category-page/</link> <comments>http://www.yartapmarketing.com/blog/magento-admin-link-to-product-from-category-page/#comments</comments> <pubDate>Sat, 08 Jan 2011 03:34:40 +0000</pubDate> <dc:creator>patrick</dc:creator> <category><![CDATA[Magento]]></category> <category><![CDATA[Programming and Web Stuff]]></category> <guid
isPermaLink="false">http://yartapllc.com/blog/?p=16</guid> <description><![CDATA[Want to link to a product directly from the category page in the Magento admin?  So did we. It ended up being rather simple and here&#8217;s how we did it: Open the file /app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php You&#8217;ll see a function &#8220;protected function _prepareColumns()&#8221; around line 100. Within that function, you&#8217;ll see where all the columns get added [...]]]></description> <content:encoded><![CDATA[<p>Want to link to a product directly from the category page in the Magento admin?  So did we.  It ended up being rather simple and here&#8217;s how we did it:</p><p>Open the file /app/code/core/Mage/Adminhtml/Block/Catalog/Category/Tab/Product.php</p><p>You&#8217;ll see a function &#8220;protected function _prepareColumns()&#8221; around line 100.  Within that function, you&#8217;ll see where all the columns get added to the Category Products tab.   After the last column that&#8217;s being added and before the line &#8220;return parent::_prepareColumns();&#8221; add the following:</p><pre>$this-&gt;addColumn('action',
            array(
                'header'    =&gt; Mage::helper('catalog')-&gt;__('Action'),
                'width'     =&gt; '50px',
                'type'      =&gt; 'action',
                'getter'     =&gt; 'getId',
                'actions'   =&gt; array(
                    array(
                        'caption' =&gt; Mage::helper('catalog')-&gt;__('Edit'),
                        'url'     =&gt; array(
                            'base'=&gt;'*/catalog_product/edit',
                            'params'=&gt;array('store'=&gt;$this-&gt;getRequest()-&gt;getParam('store'))
                        ),
                        'field'   =&gt; 'id'
                    )
                ),
                'filter'    =&gt; false,
                'sortable'  =&gt; false,
                'index'     =&gt; 'stores',
        ));</pre><p>Now we don&#8217;t have to keep 2 tabs open and go back and forth between the catagory page and product pages.  There&#8217;s a link directly to the products within the category page.  We&#8217;re running 1.4.2, but I suppose this should work with virtually any Magento version.</p><p>And obviously you may want to override the Magento core file by putting this in your own module so it doesn&#8217;t get removed when you upgrade the core.</p> ]]></content:encoded> <wfw:commentRss>http://www.yartapmarketing.com/blog/magento-admin-link-to-product-from-category-page/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Enter coupon codes in checkout page</title><link>http://www.yartapmarketing.com/blog/magento-enter-coupon-codes-in-checkout-page/</link> <comments>http://www.yartapmarketing.com/blog/magento-enter-coupon-codes-in-checkout-page/#comments</comments> <pubDate>Thu, 09 Sep 2010 19:11:27 +0000</pubDate> <dc:creator>patrick</dc:creator> <category><![CDATA[Magento]]></category> <guid
isPermaLink="false">http://yartapllc.com/blog/?p=6</guid> <description><![CDATA[We had a request from a client to add the ability for the user to enter a coupon code on the checkout page recently.  On a sidenote, I was very surprised that this isn&#8217;t already included in the Magento core.  In any case, I was pleased to find that the very day I was going [...]]]></description> <content:encoded><![CDATA[<p>We had a request from a client to add the ability for the user to enter a coupon code on the checkout page recently.  On a sidenote, I was very surprised that this isn&#8217;t already included in the Magento core.  In any case, I was pleased to find that the very day I was going to start development to add this capability to my client&#8217;s site, an extension was released that did exactly what we needed.  We had to do a little CSS massaging to fit with our Magento template, but it was for the most part just plug-and-play.</p><p><a
href="http://www.magentocommerce.com/magento-connect/Business+King/extension/4358/checkout_discount_coupon_step" target="_blank">Check out the Coupon Step extension</a></p><p>The extension was $15 when we got it and it&#8217;s $25 now so (not surprisingly) they must be getting a pretty good response to it.  To see it integrated on our client&#8217;s site, go to <a
href="http://www.ngnutrition.com" target="_blank">Ngnutrition.com</a> and add a product to your cart and proceed to checkout.  As of the time of this writing, if you want to get something from their site you can <a
href="http://www.facebook.com/ngnutrition" target="_blank">Like them on Facebook</a> and they&#8217;ll give you a coupon code to use with your purchase.</p> ]]></content:encoded> <wfw:commentRss>http://www.yartapmarketing.com/blog/magento-enter-coupon-codes-in-checkout-page/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
