<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Zen Cart Support - Addon Shipping Modules</title>
		<link>http://www.zen-cart.com/</link>
		<description>Discussion of addon Shipping modules not built-in to Zen Cart</description>
		<language>en</language>
		<lastBuildDate>Sun, 26 May 2013 05:52:48 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.zen-cart.com/images/styles/zencart/misc/rss.png</url>
			<title>Zen Cart Support - Addon Shipping Modules</title>
			<link>http://www.zen-cart.com/</link>
		</image>
		<item>
			<title>v151 Store Pickup by Delivery Postcode</title>
			<link>http://www.zen-cart.com/showthread.php?208273-Store-Pickup-by-Delivery-Postcode&amp;goto=newpost</link>
			<pubDate>Sat, 25 May 2013 08:59:37 GMT</pubDate>
			<description>*_Problem:_* 
 
You have the Store Pickup shipping module enabled. Your store is located in the South East of Queensland. A customer from Cairns places an order with you and selects Store Pickup at checkout to *save* postage. Cairns is located in the same state but is about 1700 km north of your...</description>
			<content:encoded><![CDATA[<div><b><u>Problem:</u></b><br />
<br />
You have the Store Pickup shipping module enabled. Your store is located in the South East of Queensland. A customer from Cairns places an order with you and selects Store Pickup at checkout to *save* postage. Cairns is located in the same state but is about 1700 km north of your store location. It is unlikely that the customer hops in a plane or drives 18-19 hours to your store to *save* the shipping charges.....<br />
<br />
This has happened to me a few times on one of my stores.<br />
<br />
<br />
<u><b>Solution:</b></u><br />
<br />
You limit the Store Pickup shipping module to postcodes surrounding your physical store location. If the customer's delivery address is not within the set limits then the Store Pickup option does not appear on the Checkout Shipping page.<br />
<br />
To achieve this you<br />
<br />
1. uninstall the Store Pickup module in admin<br />
2. backup the includes/modules/shipping/storepickup.php file<br />
3. modify the includes/modules/shipping/storepickup.php file (see below)<br />
4. upload the modified file<br />
5. re-install the Store Pickup module in admin<br />
<br />
The modified module now lets you enter an array of delivery postcodes you wish to allow usage of the Store Pickup option. Just enter the allowed postcodes separated by commas (no spaces) eg. 7000,7001,7005 - save and done.<br />
<br />
<br />
<u><b>The Hack:</b></u><br />
<br />
<br />
(I have this working on ZC 1.3.9 and ZC 1.5.1)<br />
<br />
Open includes/modules/shipping/storepickup.php<br />
<br />
Find this:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; if ($check_flag == false) { <br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;enabled = false; <br />
&nbsp; &nbsp; &nbsp; } <br />
&nbsp; &nbsp; } <br />
&nbsp; } <br />
&nbsp; /** <br />
&nbsp;  * Obtain quote from shipping system/calculations <br />
&nbsp;  *</code><hr />
</div>and amend to this:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; if ($check_flag == false) { <br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;enabled = false; <br />
&nbsp; &nbsp; &nbsp; } <br />
&nbsp; &nbsp; &nbsp; // bof postcodes allowed <br />
&nbsp; &nbsp; &nbsp; if (in_array($order-&gt;delivery['postcode'],explode(&quot;,&quot;, MODULE_SHIPPING_STOREPICKUP_POSTCODE))) { <br />
&nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;enabled = true; <br />
&nbsp; &nbsp; &nbsp; } else { <br />
&nbsp; &nbsp; $this-&gt;enabled = false; <br />
&nbsp; &nbsp; &nbsp; } <br />
&nbsp; &nbsp; &nbsp; // eof postcodes allowed <br />
&nbsp; &nbsp; } <br />
&nbsp; } <br />
&nbsp; /** <br />
&nbsp;  * Obtain quote from shipping system/calculations <br />
&nbsp;  *</code><hr />
</div>then find:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; /** <br />
&nbsp;  * Install the shipping module and its configuration settings <br />
&nbsp;  * <br />
&nbsp;  */ <br />
&nbsp; function install() { <br />
&nbsp; &nbsp; global $db; <br />
&nbsp; &nbsp; $db-&gt;Execute(&quot;insert into &quot; . TABLE_CONFIGURATION . &quot; (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Store Pickup Shipping', 'MODULE_SHIPPING_STOREPICKUP_STATUS', 'True', 'Do you want to offer In Store rate shipping?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())&quot;);</code><hr />
</div>and amend to this:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; /** <br />
&nbsp;  * Install the shipping module and its configuration settings <br />
&nbsp;  * <br />
&nbsp;  */ <br />
&nbsp; function install() { <br />
&nbsp; &nbsp; global $db; <br />
&nbsp; &nbsp; $db-&gt;Execute(&quot;insert into &quot; . TABLE_CONFIGURATION . &quot; (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Store Pickup Shipping', 'MODULE_SHIPPING_STOREPICKUP_STATUS', 'True', 'Do you want to offer In Store rate shipping?', '6', '0', 'zen_cfg_select_option(array(\'True\', \'False\'), ', now())&quot;); <br />
&nbsp; &nbsp; $db-&gt;Execute(&quot;insert into &quot; . TABLE_CONFIGURATION . &quot; (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Postcodes Allowed', 'MODULE_SHIPPING_STOREPICKUP_POSTCODE', '1000', 'Enter the delivery postcodes allowed to use this shipping method.&lt;br /&gt;&lt;br /&gt;Enter the allowed postcodes as a comma delimited list - do not use spaces (eg 7000,7001,7005,7010).&lt;br /&gt;&lt;br /&gt;In this example &lt;b&gt;only&lt;/b&gt; orders with delivery postcodes 7000,7001,7005 and 7010 are allowed to use the Store Pickup shipping option.&lt;br /&gt;&lt;br /&gt;', '6', '0', now())&quot;);</code><hr />
</div>lastly - at the end of the file - change this:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp;  * @return array <br />
&nbsp;  */ <br />
&nbsp; function keys() { <br />
&nbsp; &nbsp; return array('MODULE_SHIPPING_STOREPICKUP_STATUS', 'MODULE_SHIPPING_STOREPICKUP_COST', 'MODULE_SHIPPING_STOREPICKUP_TAX_CLASS', 'MODULE_SHIPPING_STOREPICKUP_TAX_BASIS', 'MODULE_SHIPPING_STOREPICKUP_ZONE', 'MODULE_SHIPPING_STOREPICKUP_SORT_ORDER'); <br />
&nbsp; } <br />
} <br />
?&gt;</code><hr />
</div>to this:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp;  * @return array <br />
&nbsp;  */ <br />
&nbsp; function keys() { <br />
&nbsp; &nbsp; return array('MODULE_SHIPPING_STOREPICKUP_STATUS', 'MODULE_SHIPPING_STOREPICKUP_POSTCODE', 'MODULE_SHIPPING_STOREPICKUP_COST', 'MODULE_SHIPPING_STOREPICKUP_TAX_CLASS', 'MODULE_SHIPPING_STOREPICKUP_TAX_BASIS', 'MODULE_SHIPPING_STOREPICKUP_ZONE', 'MODULE_SHIPPING_STOREPICKUP_SORT_ORDER'); <br />
&nbsp; } <br />
} <br />
?&gt;</code><hr />
</div><br />
Enjoy<br />
<br />
Cheers/Frank</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>frank18</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208273-Store-Pickup-by-Delivery-Postcode</guid>
		</item>
		<item>
			<title>v151 Collect+ Shipping Module (UK)</title>
			<link>http://www.zen-cart.com/showthread.php?208259-Collect-Shipping-Module-(UK)&amp;goto=newpost</link>
			<pubDate>Fri, 24 May 2013 12:37:13 GMT</pubDate>
			<description><![CDATA[Does anyone know of a shipping module for the 'Collect+' (Collect Plus) parcel company? 
I've used the table rate module as there are on 3 prices but as of 5th June 2013, there will be a Standard and an Ecomony service - each with three prices. 
 
Can anyone suggest a module or and idea how I can...]]></description>
			<content:encoded><![CDATA[<div>Does anyone know of a shipping module for the 'Collect+' (Collect Plus) parcel company?<br />
I've used the table rate module as there are on 3 prices but as of 5th June 2013, there will be a Standard and an Ecomony service - each with three prices.<br />
<br />
Can anyone suggest a module or and idea how I can do this please?</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>sully</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208259-Collect-Shipping-Module-(UK)</guid>
		</item>
		<item>
			<title>v138a FedEx Webservices suddenly caused blank white page checkout_shipping</title>
			<link>http://www.zen-cart.com/showthread.php?208244-FedEx-Webservices-suddenly-caused-blank-white-page-checkout_shipping&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 18:14:55 GMT</pubDate>
			<description><![CDATA[At 1:30 today, our site's checkout_shipping (and shipping estimator) went to a blank screen live for customers. 
 
I tracked it down to the FedEx Web Services module, I have v1.4.5.2 
 
Set it to false and checkout came back to normal.  
 
Hope this helps someone else frantically ripping their hair...]]></description>
			<content:encoded><![CDATA[<div>At 1:30 today, our site's checkout_shipping (and shipping estimator) went to a blank screen live for customers.<br />
<br />
I tracked it down to the FedEx Web Services module, I have v1.4.5.2<br />
<br />
Set it to false and checkout came back to normal. <br />
<br />
Hope this helps someone else frantically ripping their hair out.<br />
<br />
Now to get FedEx back!</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>sbbemn</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208244-FedEx-Webservices-suddenly-caused-blank-white-page-checkout_shipping</guid>
		</item>
		<item>
			<title>v151 thoughts about Dropship Core?</title>
			<link>http://www.zen-cart.com/showthread.php?208214-thoughts-about-Dropship-Core&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 00:49:02 GMT</pubDate>
			<description>Hi: 
 
Does anyone have any experience with Dropship Core yet?  I know it is a relatively new module but it has already had 72 downloads. I was just wondering how easy it is to install andconfigure.  Can anyone compare it with the Advanced Shipper module from Ceon? 
 
Thanks, 
 
Silver</description>
			<content:encoded><![CDATA[<div>Hi:<br />
<br />
Does anyone have any experience with Dropship Core yet?  I know it is a relatively new module but it has already had 72 downloads. I was just wondering how easy it is to install andconfigure.  Can anyone compare it with the Advanced Shipper module from Ceon?<br />
<br />
Thanks,<br />
<br />
Silver</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>SilverHD</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208214-thoughts-about-Dropship-Core</guid>
		</item>
		<item>
			<title>v139g Change Zones in Freeshipper</title>
			<link>http://www.zen-cart.com/showthread.php?208152-Change-Zones-in-Freeshipper&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 16:39:04 GMT</pubDate>
			<description><![CDATA[I am trying to make some of the items in my store as free ship to USA only.  I would like to use regular zone rates for International shipping and Regular Zone rates for all other products. 
 
When I activated Freeshipper I have two options in the "Shipping Zones" drop down list: 1 - none  2 - FL 
...]]></description>
			<content:encoded><![CDATA[<div>I am trying to make some of the items in my store as free ship to USA only.  I would like to use regular zone rates for International shipping and Regular Zone rates for all other products.<br />
<br />
When I activated Freeshipper I have two options in the &quot;Shipping Zones&quot; drop down list: 1 - none  2 - FL<br />
<br />
How can I change &quot;FL&quot; in to US?<br />
<br />
Thanks,<br />
Cirius</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>CiriusRizk</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208152-Change-Zones-in-Freeshipper</guid>
		</item>
		<item>
			<title>v151 USPS Shipping RateV4-IntlRateV2</title>
			<link>http://www.zen-cart.com/showthread.php?208134-USPS-Shipping-RateV4-IntlRateV2&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 21:45:26 GMT</pubDate>
			<description><![CDATA[Hello - running v. 1.5.1. The USPS Shipping Module by MarcoB - RateV4-IntlRateV2 is installed and updated. 
 
I can only get quotes for international shipping and not domestic in the US. Comes up as an error. Any thoughts of what it could be? See screenshots for settings. (Yes, I know it's set to...]]></description>
			<content:encoded><![CDATA[<div>Hello - running v. 1.5.1. The USPS Shipping Module by MarcoB - RateV4-IntlRateV2 is installed and updated.<br />
<br />
I can only get quotes for international shipping and not domestic in the US. Comes up as an error. Any thoughts of what it could be? See screenshots for settings. (Yes, I know it's set to false right now). Thanks!!<br />
<br />
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12511&amp;d=1368740688" id="attachment12511" rel="Lightbox_0" target="_blank" ><img src="http://www.zen-cart.com/attachment.php?attachmentid=12511&amp;d=1368740688&amp;thumb=1" border="0" alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.43.56 PM.png&nbsp;
Views:	23&nbsp;
Size:	42.8 KB&nbsp;
ID:	12511" class="thumbnail" style="float:CONFIG" /></a><br />
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12512&amp;d=1368740690" id="attachment12512" rel="Lightbox_0" target="_blank" ><img src="http://www.zen-cart.com/attachment.php?attachmentid=12512&amp;d=1368740690&amp;thumb=1" border="0" alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.44.07 PM.jpg&nbsp;
Views:	22&nbsp;
Size:	47.3 KB&nbsp;
ID:	12512" class="thumbnail" style="float:CONFIG" /></a><br />
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12513&amp;d=1368740691" id="attachment12513" rel="Lightbox_0" target="_blank" ><img src="http://www.zen-cart.com/attachment.php?attachmentid=12513&amp;d=1368740691&amp;thumb=1" border="0" alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.44.20 PM.jpg&nbsp;
Views:	22&nbsp;
Size:	43.6 KB&nbsp;
ID:	12513" class="thumbnail" style="float:CONFIG" /></a></div>


	<div style="padding:10px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:10px">
			
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12511&amp;d=1368740688" 
rel="Lightbox_1203488" id="attachment12511"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12511&amp;stc=1&amp;thumb=1&amp;d=1368740688" 
alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.43.56 PM.png&nbsp;
Views:	N/A&nbsp;
Size:	42.8 KB&nbsp;
ID:	12511"/></a>
&nbsp;

<a href="http://www.zen-cart.com/attachment.php?attachmentid=12512&amp;d=1368740690" 
rel="Lightbox_1203488" id="attachment12512"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12512&amp;stc=1&amp;thumb=1&amp;d=1368740690" 
alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.44.07 PM.jpg&nbsp;
Views:	N/A&nbsp;
Size:	47.3 KB&nbsp;
ID:	12512"/></a>
&nbsp;

<a href="http://www.zen-cart.com/attachment.php?attachmentid=12513&amp;d=1368740691" 
rel="Lightbox_1203488" id="attachment12513"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12513&amp;stc=1&amp;thumb=1&amp;d=1368740691" 
alt="Click image for larger version.&nbsp;

Name:	Screen Shot 2013-05-16 at 5.44.20 PM.jpg&nbsp;
Views:	N/A&nbsp;
Size:	43.6 KB&nbsp;
ID:	12513"/></a>
&nbsp;<br /><br />

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>Christian_Wagner</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208134-USPS-Shipping-RateV4-IntlRateV2</guid>
		</item>
		<item>
			<title>v151 USPS Shipping Module Availability</title>
			<link>http://www.zen-cart.com/showthread.php?208108-USPS-Shipping-Module-Availability&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 19:51:56 GMT</pubDate>
			<description><![CDATA[Hello all - running v1.5.1. 
 
Is there a USPS shipping module that determines shipping price by weight? Hope this isn't a dumb question. Thanks!]]></description>
			<content:encoded><![CDATA[<div>Hello all - running v1.5.1.<br />
<br />
Is there a USPS shipping module that determines shipping price by weight? Hope this isn't a dumb question. Thanks!</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>Christian_Wagner</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208108-USPS-Shipping-Module-Availability</guid>
		</item>
		<item>
			<title>v139h USPS shipper - rates not identified and are not selectable</title>
			<link>http://www.zen-cart.com/showthread.php?208075-USPS-shipper-rates-not-identified-and-are-not-selectable&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 13:59:36 GMT</pubDate>
			<description><![CDATA[I've installed, configured and enabled the latest version of the USPS shipper (2013-03-27). Activated my USPS account. 
 
On checkout the plugin does deliver rate estimates for the services I select -- however, there's no checkbox to actually select a rate, nor are the different rates identified...]]></description>
			<content:encoded><![CDATA[<div>I've installed, configured and enabled the latest version of the USPS shipper (2013-03-27). Activated my USPS account.<br />
<br />
On checkout the plugin does deliver rate estimates for the services I select -- however, there's no checkbox to actually select a rate, nor are the different rates identified (only their prices).<br />
<br />
I'm guessing it may have something to do with the checkout_shipping template (which has been highly modified on my install), but I'm not sure what I should be looking for. I can compare with a stock template, but if someone knows what specific area I should be looking it, it would be helpful.<br />
<br />
Thanks,<br />
<br />
Johjn</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>jgold723</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208075-USPS-shipper-rates-not-identified-and-are-not-selectable</guid>
		</item>
		<item>
			<title>v151 Shipping modules information not displaying in admin</title>
			<link>http://www.zen-cart.com/showthread.php?208034-Shipping-modules-information-not-displaying-in-admin&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 09:19:17 GMT</pubDate>
			<description>hi, hope somone can help:smile:... 
Over the period of a week or two I changed a few of the files in \lang\eng\modules\shipping\  eg the tiltle and description in the table.php file and table2.php. I however do not know what i changed that caused the shipping modules in admin to not display any...</description>
			<content:encoded><![CDATA[<div>hi, hope somone can help:smile:...<br />
Over the period of a week or two I changed a few of the files in \lang\eng\modules\shipping\  eg the tiltle and description in the table.php file and table2.php. I however do not know what i changed that caused the shipping modules in admin to not display any information. If i click the info on any of the shipping methods it does not show the relevant info on the right.<br />
<br />
I eventually found in the cache folder an error log with the following:<br />
[12-May-2013 11:07:05] PHP Fatal error:  Uncaught exception 'SeRequestException' with message 'Response content type is not in correct format.' in /home/dereksmi/public_html/nanoshop/includes/modules/pages/shippingeasyapi/includes/apilib/php/base/SeServiceExecutor.php:114<br />
Stack trace:<br />
#0 /home/dereksmi/public_html/nanoshop/includes/modules/pages/shippingeasyapi/includes/apilib/php/SeService.php(457): SeServiceExecutor-&gt;execute(Object(SeCurlListCouriersRequest), Object(SeCurlListCouriersResponse))<br />
#1 /home/dereksmi/public_html/nanoshop/includes/modules/shipping/shippingeasy.php(492): SeService-&gt;listCouriers()<br />
#2 /home/dereksmi/public_html/nanoshop/includes/modules/shipping/shippingeasy.php(42): shippingeasy-&gt;_shippingeasy_couriers()<br />
#3 /home/dereksmi/public_html/nanoshop/zcadmin/modules.php(191): shippingeasy-&gt;shippingeasy()<br />
#4 {main}<br />
  thrown in /home/dereksmi/public_html/nanoshop/includes/modules/pages/shippingeasyapi/includes/apilib/php/base/SeServiceExecutor.php on line 114<br />
<br />
Can somone please decode and tell me how to fix my problem?<br />
thanks</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>lazycatz</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?208034-Shipping-modules-information-not-displaying-in-admin</guid>
		</item>
		<item>
			<title>v139h USPS RateV4 Intl RateV2 - Includes Insurance</title>
			<link>http://www.zen-cart.com/showthread.php?207993-USPS-RateV4-Intl-RateV2-Includes-Insurance&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 18:37:09 GMT</pubDate>
			<description><![CDATA[Hi, after installing, configuring and testing this version I noticed that if I select to have "insurance" as an additional feature for the package/order, it adds it to the quote INSTEAD of showing it as an option as you can do on usps.com. Is it possible to accomplish this? I don't want to force...]]></description>
			<content:encoded><![CDATA[<div>Hi, after installing, configuring and testing this version I noticed that if I select to have &quot;insurance&quot; as an additional feature for the package/order, it adds it to the quote INSTEAD of showing it as an option as you can do on usps.com. Is it possible to accomplish this? I don't want to force shoppers to pay for something that's actually optional with USPS.</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>ideasgirl</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207993-USPS-RateV4-Intl-RateV2-Includes-Insurance</guid>
		</item>
		<item>
			<title>v151 Free shipping issue</title>
			<link>http://www.zen-cart.com/showthread.php?207967-Free-shipping-issue&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 14:56:56 GMT</pubDate>
			<description><![CDATA[I set admin/modules/shipping/FREE SHIPPING! to "ture" and turn off the other options, because I want a total free shipping for my store. But when I try to checkout, the delivery information show: 
"Not Available At This Time 
Sorry, we are not shipping to your region at this time. 
Please contact...]]></description>
			<content:encoded><![CDATA[<div>I set admin/modules/shipping/<font color="#FF0000">FREE SHIPPING!</font> to &quot;ture&quot; and turn off the other options, because I want a total free shipping for my store. But when I try to checkout, the delivery information show:<br />
&quot;Not Available At This Time<br />
Sorry, we are not shipping to your region at this time.<br />
Please contact us for alternate arrangements.&quot;<br />
<br />
Appreciate if somebody could help.<br />
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12462&amp;d=1368024993" id="attachment12462" rel="Lightbox_0" target="_blank" ><img src="http://www.zen-cart.com/attachment.php?attachmentid=12462&amp;d=1368024993&amp;thumb=1" border="0" alt="Click image for larger version.&nbsp;

Name:	Snap2.gif&nbsp;
Views:	29&nbsp;
Size:	3.8 KB&nbsp;
ID:	12462" class="thumbnail" style="float:CONFIG" /></a>   <a href="http://www.zen-cart.com/attachment.php?attachmentid=12464&amp;d=1368025112" id="attachment12464" rel="Lightbox_0" target="_blank" ><img src="http://www.zen-cart.com/attachment.php?attachmentid=12464&amp;d=1368025112&amp;thumb=1" border="0" alt="Click image for larger version.&nbsp;

Name:	Snap1.gif&nbsp;
Views:	23&nbsp;
Size:	1.6 KB&nbsp;
ID:	12464" class="thumbnail" style="float:CONFIG" /></a></div>


	<div style="padding:10px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:10px">
			
<a href="http://www.zen-cart.com/attachment.php?attachmentid=12462&amp;d=1368024993" 
rel="Lightbox_1202103" id="attachment12462"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12462&amp;stc=1&amp;thumb=1&amp;d=1368024993" 
alt="Click image for larger version.&nbsp;

Name:	Snap2.gif&nbsp;
Views:	N/A&nbsp;
Size:	3.8 KB&nbsp;
ID:	12462"/></a>
&nbsp;

<a href="http://www.zen-cart.com/attachment.php?attachmentid=12464&amp;d=1368025112" 
rel="Lightbox_1202103" id="attachment12464"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12464&amp;stc=1&amp;thumb=1&amp;d=1368025112" 
alt="Click image for larger version.&nbsp;

Name:	Snap1.gif&nbsp;
Views:	N/A&nbsp;
Size:	1.6 KB&nbsp;
ID:	12464"/></a>
&nbsp;

<a href="http://www.zen-cart.com/attachment.php?attachmentid=12463&amp;d=1368025011" 
rel="Lightbox_1202103" id="attachment12463"
 target="_blank"><img class="thumbnail" src="http://www.zen-cart.com/attachment.php?attachmentid=12463&amp;stc=1&amp;thumb=1&amp;d=1368025011" 
alt="Click image for larger version.&nbsp;

Name:	test1.jpg&nbsp;
Views:	N/A&nbsp;
Size:	26.6 KB&nbsp;
ID:	12463"/></a>
&nbsp;<br /><br />

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>fanisme</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207967-Free-shipping-issue</guid>
		</item>
		<item>
			<title>Fedex Ground Home Delivery with Advanced Shipper?</title>
			<link>http://www.zen-cart.com/showthread.php?207919-Fedex-Ground-Home-Delivery-with-Advanced-Shipper&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 22:52:58 GMT</pubDate>
			<description><![CDATA[I was wondering if someone could help me. I am using advanced shipper 's fedex calculator and I cannot get Fedex Ground Home Delivery to work. I called Fedex and they told me that Ground Home Delivery quotes are not being generated because there are not flags showing the address in residential. By...]]></description>
			<content:encoded><![CDATA[<div>I was wondering if someone could help me. I am using advanced shipper 's fedex calculator and I cannot get Fedex Ground Home Delivery to work. I called Fedex and they told me that Ground Home Delivery quotes are not being generated because there are not flags showing the address in residential. By checking off the box for fedex ground home delivery I thought a flag would be created, but I guess not.<br />
<br />
 I wrote Connor (the module's creator), but unfortunately I found out that Connor has passed away. I was told by the company now in charge of the module that I am the first person they know of that is using the service. Additionally, they said they have no clue what is wrong.<br />
<br />
Has anyone had this problem and know how to fix it?</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>awesomshot</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207919-Fedex-Ground-Home-Delivery-with-Advanced-Shipper</guid>
		</item>
		<item>
			<title>v150 USPS shipping module...trying to restrict shipping options programmatically</title>
			<link>http://www.zen-cart.com/showthread.php?207888-USPS-shipping-module-trying-to-restrict-shipping-options-programmatically&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 17:40:41 GMT</pubDate>
			<description><![CDATA[My shop has one category whose products must be shipped via Express Mail. All other products may be shipped either by Priority or Express. If an order contains one or more products from this particular category I need to force Express Mail. 
 
So, both shipping methods are allowed, and I'm...]]></description>
			<content:encoded><![CDATA[<div>My shop has one category whose products must be shipped via Express Mail. All other products may be shipped either by Priority or Express. If an order contains one or more products from this particular category I need to force Express Mail.<br />
<br />
So, both shipping methods are allowed, and I'm modifying the quote() function per Linda's code in <a href="http://www.zen-cart.com/showthread.php?56242" target="_blank">this thread</a> to check for products in category 69 in the cart and disable Priority Mail if that's the case. This code worked great in a past version of the USPS module, but now I'm using the update from March 27 and I can't get it to work.<br />
<br />
Here's the code, from within quote():<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">PHP Code:</div>
	<hr /><code class="bbcode_code"><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">//&nbsp;Disable&nbsp;Priority&nbsp;Mail&nbsp;for&nbsp;cheese.&nbsp;ecasteel<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">if&nbsp;((</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">types</span><span style="color: #007700">&#91;</span><span style="color: #0000BB">$type</span><span style="color: #007700">&#93;&nbsp;==&nbsp;</span><span style="color: #DD0000">'Priority&nbsp;MailRM'</span><span style="color: #007700">)&nbsp;&amp;&amp;&nbsp;</span><span style="color: #0000BB">$_SESSION</span><span style="color: #007700">&#91;</span><span style="color: #DD0000">'cart'</span><span style="color: #007700">&#93;-&gt;</span><span style="color: #0000BB">in_cart_check</span><span style="color: #007700">(</span><span style="color: #DD0000">'master_categories_id'</span><span style="color: #007700">,</span><span style="color: #DD0000">'69'</span><span style="color: #007700">)&nbsp;&gt;&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$skip_this&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$skip_this&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">false</span><span style="color: #007700">;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(!</span><span style="color: #0000BB">$skip_this</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;eof&nbsp;ecasteel<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">if&nbsp;(((</span><span style="color: #0000BB">$method&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">in_array</span><span style="color: #007700">(</span><span style="color: #0000BB">$type</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$types</span><span style="color: #007700">))&nbsp;||&nbsp;</span><span style="color: #0000BB">$method&nbsp;</span><span style="color: #007700">==&nbsp;</span><span style="color: #0000BB">$type</span><span style="color: #007700">)&nbsp;&amp;&amp;&nbsp;</span><span style="color: #0000BB">$usps_shipping_weight&nbsp;</span><span style="color: #007700">&lt;=&nbsp;</span><span style="color: #0000BB">$maxweight&nbsp;</span><span style="color: #007700">&amp;&amp;&nbsp;</span><span style="color: #0000BB">$usps_shipping_weight&nbsp;</span><span style="color: #007700">&gt;&nbsp;</span><span style="color: #0000BB">$minweight</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$methods</span><span style="color: #007700">&#91;&#93;&nbsp;=&nbsp;array(</span><span style="color: #DD0000">'id'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">$type</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #DD0000">'title'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">$title</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #DD0000">'cost'&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">$cost</span><span style="color: #007700">,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;bof&nbsp;ecasteel<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;eof&nbsp;ecasteel<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code></code><hr />
</div>I think the problem is how I check for the shipping type. I'm using the string 'Priority MailRM' because that's what I see when I print out the types[] array. I've also tried 'Priority Mail', which is what worked before, and 'Priority Mail®', which is what shows up on the shipping options page during checkout. Do I need to check for a different string? I also tried checking whether the array index was 15, which is where 'Priority MailRM' shows up when I look at the types[] array. Can anyone point me in the right direction?</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>ecclescake</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207888-USPS-shipping-module-trying-to-restrict-shipping-options-programmatically</guid>
		</item>
		<item>
			<title><![CDATA[ShipRush FedEx Service & Weight Translation]]></title>
			<link>http://www.zen-cart.com/showthread.php?207827-ShipRush-FedEx-Service-amp-Weight-Translation&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 18:45:01 GMT</pubDate>
			<description><![CDATA[While my orders import correctly into shiprush, it's impossible for the application to translate my FedEx specified service into theirs because the weight of my parcel is included in the service string sent to shiprush. 
 
For instance, a FedEx Priority Overnight shipment is viewed as "FedEx...]]></description>
			<content:encoded><![CDATA[<div>While my orders import correctly into shiprush, it's impossible for the application to translate my FedEx specified service into theirs because the weight of my parcel is included in the service string sent to shiprush.<br />
<br />
For instance, a FedEx Priority Overnight shipment is viewed as &quot;FedEx (0.30lbs) (Priority Overnight:&quot; which includes the weight variable.  with that weight number always changing, I can't seem to tell shiprush what service to use.   How can I move this weight number from the service string but still see it on the invoices?  Anyone else having this problem?</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>bi11i</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207827-ShipRush-FedEx-Service-amp-Weight-Translation</guid>
		</item>
		<item>
			<title>v150 USPS module not shipping to Korea, Republic of</title>
			<link>http://www.zen-cart.com/showthread.php?207825-USPS-module-not-shipping-to-Korea-Republic-of&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 16:53:29 GMT</pubDate>
			<description>I am using the latest USPS module for international shipping, and I am unable to ship to an address in Kyonggi-do, Korea, Republic of (South Korea). No shipping methods are available. All other international countries are working fine. I checked my country codes and my setup for our International...</description>
			<content:encoded><![CDATA[<div>I am using the latest USPS module for international shipping, and I am unable to ship to an address in Kyonggi-do, Korea, Republic of (South Korea). No shipping methods are available. All other international countries are working fine. I checked my country codes and my setup for our International zone, and Korea, Republic of is added there as shipping to all zones. Also, I have the correct type of shipping for this country (Express Mail International). According to the USPS website, their rules state: <br />
<br />
<div style="margin-left:40px">Service is available only to the provinces comprising the Republic of Korea, i.e., provinces south of the 38th parallel of latitude.<br />
The following is a list of the provinces comprising the Republic of Korea:<br />
 <br />
Cheju-do<br />
Cholla-namdo<br />
Cholla-pukto<br />
Ch’ungch’ong-namdo<br />
Ch’ungch’ong-pukto<br />
*Kangwon-do<br />
*Kyonggi-do<br />
Kyongsang-namdo<br />
Kyongsang-pukto<br />
<br />
The provinces marked with the asterisk (*) are divided by the 38th parallel of latitude, and it is the responsibility of the mailers to determine that the post offices to which their parcels are addressed are located south of the 38th parallel. Mail addressed to offices north of the 38th parallel will not be forwarded to destination but will be treated as undeliverable.</div><br />
However, this address is south of the 38th parallel and should be deliverable. Has anyone else had this issue, or have ideas on how to resolve it?<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.zen-cart.com/forumdisplay.php?39-Addon-Shipping-Modules">Addon Shipping Modules</category>
			<dc:creator>aiko70</dc:creator>
			<guid isPermaLink="true">http://www.zen-cart.com/showthread.php?207825-USPS-module-not-shipping-to-Korea-Republic-of</guid>
		</item>
	</channel>
</rss>
