<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    
    <channel>
    
    <title>Documentation</title>
    <link>http://www.magentocommerce.com/boards/</link>
    <description>Magento Forums</description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2011</dc:rights>
    <dc:date>2011-10-11T04:58:09-08:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>free shipping</title>
      <link>http://www.magentocommerce.com/boards/viewthread/262903/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/262903/#When:04:58:09Z</guid>
      <description><![CDATA[<p>I can seem to get free shipping in a shopping cart rule to work?
</p>]]></description>
      <dc:date>2011-10-11T04:58:09-08:00</dc:date>
    </item>

    <item>
      <title>Curious about one aspect of the filter</title>
      <link>http://www.magentocommerce.com/boards/viewthread/261018/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/261018/#When:03:00:02Z</guid>
      <description><![CDATA[<p>First of all, Sherrie, thank you for being the awesome person that you are. This module is a godsend, especially since I&#8217;m not proficient at Magento.
</p>
<p>
I&#8217;m curious about something, though. I was trying to set one flatrate as &#8220;Free Shipping&#8221; for orders totalling 50 and above, but I noticed that even when I had orders below 50, the option was still showing up. I took some peeking around and saw that in your Mulitflat.php, around line 60, you have an OR logic operative that shows the option if the maximum rate has not been set.
</p>
<p>
<div class="codeblock"><code>
<span style="color: #007700">if(</span><span style="color: #0000BB">$shippingName&nbsp;</span><span style="color: #007700">!=&nbsp;</span><span style="color: #DD0000">""&nbsp;</span><span style="color: #007700">&amp;&amp;&nbsp;(</span><span style="color: #0000BB">$packageValue&nbsp;</span><span style="color: #007700">&gt;=&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'min_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;&amp;&amp;&nbsp;</span><span style="color: #0000BB">$packageValue&nbsp;</span><span style="color: #007700">&lt;=&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'max_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">))&nbsp;or&nbsp;</span><span style="color: #0000BB">$shippingName&nbsp;</span><span style="color: #007700">!=&nbsp;</span><span style="color: #DD0000">""&nbsp;</span><span style="color: #007700">&amp;&amp;&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'max_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">)</span>
</code></div>
</p>
<p>
I can&#8217;t understand the reason behind this, so I thought I&#8217;d ask you about it.
</p>
<p>
I changed it to filter like this, which suits my purposes:
</p>
<p>
<div class="codeblock"><code>
<span style="color: #007700">if(</span><span style="color: #0000BB">$shippingName&nbsp;</span><span style="color: #007700">!=&nbsp;</span><span style="color: #DD0000">""&nbsp;</span><span style="color: #007700">&amp;&amp;&nbsp;((</span><span style="color: #0000BB">$packageValue&nbsp;</span><span style="color: #007700">&gt;=&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'min_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;||&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'min_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;==</span><span style="color: #DD0000">""</span><span style="color: #007700">)&nbsp;&amp;&amp;&nbsp;(</span><span style="color: #0000BB">$packageValue&nbsp;</span><span style="color: #007700">&lt;=&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'max_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;||&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getConfigData</span><span style="color: #007700">(</span><span style="color: #DD0000">'max_shipping'</span><span style="color: #007700">.</span><span style="color: #0000BB">$i</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">)))</span>
</code></div>
</p>]]></description>
      <dc:date>2011-09-22T03:00:02-08:00</dc:date>
    </item>

    <item>
      <title>Question about the 10 pickup points&#63;</title>
      <link>http://www.magentocommerce.com/boards/viewthread/214657/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/214657/#When:07:59:16Z</guid>
      <description><![CDATA[<p>Its possible to add more pickup points (15,20,30...) ?
</p>
<p>
http://www.magentocommerce.com/magento-connect/sherrie/extension/306/pickup-at-event--multiple-flatrates
</p>]]></description>
      <dc:date>2010-12-15T07:59:16-08:00</dc:date>
    </item>

    <item>
      <title>Trying to install</title>
      <link>http://www.magentocommerce.com/boards/viewthread/56496/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/56496/#When:17:13:58Z</guid>
      <description><![CDATA[<p>I used the magento connect manager to install and am using the latest version of magento 1.3.2.3
</p>
<p>
What are the files and the process that i need to modify in order to install, for some reason I cannot even get the extension to show up in the admin section.
</p>
<p>
Also, where exactly do I have to look in the backend once I get the module installed?
</p>
<p>
Thanks,
<br />
Mark
</p>]]></description>
      <dc:date>2009-09-27T17:13:58-08:00</dc:date>
    </item>

    <item>
      <title>Can&#8217;t Install &#45; Error getting extension key</title>
      <link>http://www.magentocommerce.com/boards/viewthread/224440/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/224440/#When:12:13:15Z</guid>
      <description><![CDATA[<p>When I try to get the extenstion key I am given this url:&nbsp; http://connect20.magentocommerce.com/community/Minerva_Shipping  when I go to it I get a Forbidden error.
</p>
<p>
How can I get this extension?
</p>
<p>
Thanks
<br />
Janice
</p>]]></description>
      <dc:date>2011-03-30T12:13:15-08:00</dc:date>
    </item>

    <item>
      <title>Multiple multiple flatrates</title>
      <link>http://www.magentocommerce.com/boards/viewthread/44046/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/44046/#When:02:03:25Z</guid>
      <description><![CDATA[<p>This Shipping module was exactly what I needed. But I made a small change in my implementation to group the rates, I simply duplicated the module as a local code extension with a new name. Then I could add and group rates like:
<br />
Transport Company 1
<br />
  Rate 1
<br />
  Rate 2
<br />
  Rate 3
<br />
  Rate 4
<br />
Transport Company 2
<br />
  Rate 1
<br />
  Rate 2
<br />
  Rate 3
<br />
  Rate 4
</p>
<p>
It all got super nice in the checkout! <img src="http://www.magentocommerce.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;padding:0;" />
</p>]]></description>
      <dc:date>2009-06-02T02:03:25-08:00</dc:date>
    </item>

    <item>
      <title>Compatibilty with 1.4.x</title>
      <link>http://www.magentocommerce.com/boards/viewthread/196484/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/196484/#When:02:34:22Z</guid>
      <description><![CDATA[<p>Hello Sherrie,
<br />
is your extension compaible with 1.4.x ?
</p>
<p>
best regards from germany
<br />
Patrick Schmidt
</p>]]></description>
      <dc:date>2010-06-17T02:34:22-08:00</dc:date>
    </item>

    <item>
      <title>Get Shipping Details to New Order Email</title>
      <link>http://www.magentocommerce.com/boards/viewthread/219083/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/219083/#When:23:23:52Z</guid>
      <description><![CDATA[<p>Hi Sherrie Rohde,
</p>
<p>
Extension is working well. Thank you very much Sherrie. I have a small problem, Can you please give me a kind help to find a good solution? I&#8217;m using magento 1.4.1.1 version and I have installed the extension (Pickup at Event / Multiple Flatrates) successfully. Now I need to get the shipping details to the new order email template. Currently it&#8217;s showing &#8220;Title&#8221; and &#8220;Event / Method 1 &gt;&gt;&#8221; as Shipping Method using  &#123;&#123;var order.getShippingDescription()&#125;&#125;. Actually I need to get not only the method name, I need to get content in &#8220;Details&#8221; textarea to new order email. I tried &#123;&#123;var order.getMethodDetails()&#125;&#125;. But it&#8217;s not working. Please help me as soon as possible.
</p>
<p>
Thanks in advance.
</p>]]></description>
      <dc:date>2011-02-02T23:23:52-08:00</dc:date>
    </item>

    <item>
      <title>How to display shipdetails&#63;</title>
      <link>http://www.magentocommerce.com/boards/viewthread/180217/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/180217/#When:06:30:52Z</guid>
      <description><![CDATA[<p>I have tried to add &#8220;.shipDetails &#123; padding-left: 25px; &#125;&#8221; into skin.css and styles.css, still no luck to display the shipping method details. Am I doing the correct way? Anyone can advise?
</p>]]></description>
      <dc:date>2010-04-24T06:30:52-08:00</dc:date>
    </item>

    <item>
      <title>Cannot see method when adding new orders in the backend</title>
      <link>http://www.magentocommerce.com/boards/viewthread/203993/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/203993/#When:17:56:23Z</guid>
      <description><![CDATA[<p>Hi,
</p>
<p>
Thanks for this extension.
</p>
<p>
I\&#8217;ve installed and it seems to work. However I cannot see it when I add an order in Magento Admin?
</p>
<p>
Does anyone know how I can make this work?
</p>
<p>
Thanks
</p>]]></description>
      <dc:date>2010-09-01T17:56:23-08:00</dc:date>
    </item>

    
    </channel>
</rss>
