<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Fetch doesn't use Shipping. How can I turn off the Shipping messages?</title>
    <link>http://forums.shopify.com/categories/1/posts/22084</link>
    <language>en-us</language>
    <description>Feed for discussion topic Fetch doesn't use Shipping. How can I turn off the Shipping messages?</description>
    <item>
      <title>Fetch doesn't use Shipping. How can I turn off the Shipping messages?</title>
      <author>Forrest Maready</author>
      <pubDate>Wed, 10 Sep 2008 14:03:03 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084</guid>
      <description>I'm using Fetch for an all download store. Nothing will ever need to be shipped. Is there a way to disable the shipping messages when you check out?

I deleted all the shipping preferences, and added one called "Digital Download- This Will not be Shipped" with a rate of $0.00, but when the user checks out they still have a couple of shipping messages before they get to that screen (like is the shipping address the same as the billing).

It's not a hugie problem, but thought if someone knew how I'd love to know.

Tanks!!!!!!!!</description>
    </item>
    <item>
      <title>Jared Burns commented</title>
      <author>Jared Burns</author>
      <pubDate>Wed, 10 Sep 2008 14:08:10 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-22085</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-22085</guid>
      <description>&lt;p&gt;Unfortunately not. Shopify requires those fields during checkout.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ovrcast collective commented</title>
      <author>ovrcast collective</author>
      <pubDate>Mon, 06 Oct 2008 18:34:39 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-22633</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-22633</guid>
      <description>&lt;p&gt;i think digital downloads are a big part of e-commerce these days&amp;#8230; hopefully big enough to get shopify to help iron some of these little nuances  &amp;#8211; ive been commenting on the fetch tax issue a lot too&lt;/p&gt;</description>
    </item>
    <item>
      <title>cooperwd commented</title>
      <author>cooperwd</author>
      <pubDate>Wed, 05 Nov 2008 00:03:49 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23214</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23214</guid>
      <description>&lt;p&gt;I&amp;#8217;m working an a &lt;span class="caps"&gt;CSS&lt;/span&gt; solution for this. It&amp;#8217;s not elegant, but it seems to be working. Let me know if you&amp;#8217;re interested and I&amp;#8217;ll post it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kenzie commented</title>
      <author>Kenzie</author>
      <pubDate>Fri, 14 Nov 2008 21:01:31 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23407</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23407</guid>
      <description>&lt;p&gt;Is there any way Shopify can identify digital or virtual products so the shipping address can be skipped?&lt;/p&gt;


	&lt;p&gt;Maybe a checkbox in the product page, or by using weight (zero or negative)?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Fri, 14 Nov 2008 21:31:28 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23408</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23408</guid>
      <description>&lt;blockquote&gt;
		&lt;p&gt;I&#8217;m working an a &lt;span class="caps"&gt;CSS&lt;/span&gt; solution for this. It&#8217;s not elegant, but it seems to be working. Let me know if you&#8217;re interested and I&#8217;ll post it.&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;It is possible to apply display:none to anything that mentions shipping. It works. Including the checkbox that is ticked by default.&lt;/p&gt;


	&lt;p&gt;However, one is still required to provide an address, the&lt;br /&gt;&amp;#8216;Billing address&amp;#8217;.&lt;/p&gt;


	&lt;p&gt;That&amp;#8217;s good enough for me. The client is free to fill in a bogus address anyway.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kenzie commented</title>
      <author>Kenzie</author>
      <pubDate>Fri, 14 Nov 2008 23:11:24 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23410</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23410</guid>
      <description>&lt;p&gt;In my case the client is mixing tangible and virtual goods, so can&amp;#8217;t always hide shipping fields.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jared Burns commented</title>
      <author>Jared Burns</author>
      <pubDate>Fri, 14 Nov 2008 23:48:24 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23411</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23411</guid>
      <description>&lt;p&gt;You can conditionally add the custom checkout.css and hide the shipping fields as caroline suggests only if the cart weight is greater than zero. Something like this&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;{% if cart.total_weight &amp;gt; 0 %}
    {{ 'checkout.css' | asset_url | stylesheet_tag }}
{% endif %}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Just set digital product weights to 0 and physical good to anything above 0. If the cart contains digital goods only the shipping fields would be hidden. If the cart has even one physical good then the shipping fields are shown.&lt;/p&gt;


	&lt;p&gt;Could that work for you?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kenzie commented</title>
      <author>Kenzie</author>
      <pubDate>Sat, 15 Nov 2008 20:37:12 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23417</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23417</guid>
      <description>&lt;p&gt;Where would I add this condition?&lt;/p&gt;


	&lt;p&gt;I thought the only way to alter the checkout page was with the checkout.css file, but this is my first Shopify site in a couple of years, so I may have missed something.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jared Burns commented</title>
      <author>Jared Burns</author>
      <pubDate>Sat, 15 Nov 2008 21:53:26 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23419</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23419</guid>
      <description>&lt;p&gt;Yes, the only way to alter the checkout pages is using checkout.css. What I&amp;#8217;m suggesting is that you only load up checkout.css if there are digital products in the cart.&lt;/p&gt;


	&lt;p&gt;You put the statement above in the head of theme.liquid. Then you &amp;#8220;hide&amp;#8221; the desired elements in checkout.css.&lt;/p&gt;


	&lt;p&gt;If you need help with this you can contact us directly through the contact us link in the footer of &lt;a href="http://www.fetchapp.com"&gt;our homepage&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>plainspace commented</title>
      <author>plainspace</author>
      <pubDate>Thu, 20 Nov 2008 20:30:04 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23550</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23550</guid>
      <description>&lt;p&gt;Help,&lt;/p&gt;


	&lt;p&gt;We are seeing some dynamic stylesheets being generated that are overriding our checkout.css file.  Any ideas?&lt;/p&gt;


	&lt;p&gt;&lt;a href="https://static2.shopify.com/s/stylesheets/forms.css?979847326953fbf78c8c513e961870b46cc55d9a"&gt;https://static2.shopify.com/s/stylesheets/forms.css?979847326953fbf78c8c513e961870b46cc55d9a&lt;/a&gt;&lt;br /&gt;&lt;a href="https://static1.shopify.com/s/stylesheets/checkout.css?979847326953fbf78c8c513e961870b46cc55d9a"&gt;https://static1.shopify.com/s/stylesheets/checkout.css?979847326953fbf78c8c513e961870b46cc55d9a&lt;/a&gt;&lt;br /&gt;&lt;a href="https://static3.shopify.com/s/files/1/0014/7262/assets/checkout.css"&gt;https://static3.shopify.com/s/files/1/0014/7262/assets/checkout.css&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Thanks!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Jamie commented</title>
      <author>Jamie</author>
      <pubDate>Thu, 20 Nov 2008 22:42:13 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-23554</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-23554</guid>
      <description>&lt;p&gt;Is it just a few rules getting superceded? If it is I had something similar. I just went back and tracked down each one and used the ! important rule on each on and it cleared things up.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Richard Bird commented</title>
      <author>Richard Bird</author>
      <pubDate>Fri, 06 Nov 2009 22:12:20 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-30805</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-30805</guid>
      <description>&lt;p&gt;I don't believe this solutions works any longer. Just for testing, I put the follwing in the head of theme.liquid&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;{% if cart.total_weight &amp;lt; 0 %}
    &amp;lt;!-- total weight is less than zero --&amp;gt;
{% endif %}
{% if cart.total_weight == 0 %}
    &amp;lt;!-- total weight is equal to zero --&amp;gt;
{% endif %}
{% if cart.total_weight &amp;gt; 0 %}
    &amp;lt;!-- total weight is greater than zero --&amp;gt;
{% endif %}
&lt;/pre&gt;
&lt;p&gt;And it does not render on the checkout page no matter what.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Sat, 07 Nov 2009 00:09:45 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-30806</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-30806</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;@Jared,&lt;/p&gt;
&lt;p&gt;You can conditionally add the custom checkout.css and hide the shipping fields as caroline suggests only if the cart weight is greater than zero. Something like this&amp;hellip;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{% if cart.total_weight &amp;gt; 0 %}&lt;br /&gt;    {{ 'checkout.css' | asset_url | stylesheet_tag }}&lt;br /&gt;{% endif %}&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt;Coding dyslexia.&lt;/p&gt;
&lt;p&gt;Code should be:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{% if cart.total_weight == 0 %}&lt;br /&gt;    {{ 'checkout.css' | asset_url | stylesheet_tag }}&lt;br /&gt;{% endif %}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;@Richard Bird&lt;/p&gt;
&lt;p&gt;The code provided by Jared goes into the header element in theme.liquid. However, you won't see your HTML comment on the checkout pages. You will see your HTML comment on any page &lt;em&gt;but&lt;/em&gt; the checkout pages. An that's normal.&lt;/p&gt;
&lt;p&gt;Bad news:&lt;/p&gt;
&lt;p&gt;Jared's solution won't work because linking in your own checkout.css file in the header is not even required for that stylesheet to be used. The mere presence of a stylesheet named checkout.css in your Assets folder will be enough for Shopify to 'link' it in at checkout. Unfortunately. So your own overrides will be applied, whether you have tangible goods inside the cart or not.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Caroline Schnapp commented</title>
      <author>Caroline Schnapp</author>
      <pubDate>Sat, 07 Nov 2009 00:15:25 +0000</pubDate>
      <link>http://forums.shopify.com/categories/1/posts/22084#comment-30807</link>
      <guid>http://forums.shopify.com/categories/1/posts/22084#comment-30807</guid>
      <description>&lt;p&gt;What we need here is a way to use global objects in .css.liquid files, not only the theme settings.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
