dressnthecity Posted December 7, 2010 Share Posted December 7, 2010 Hi there,I'm using the element theme and after creating a delivery carrier in my modules I get this error message when I test the purchasing funnel....'There is no carrier available that will deliver to this address!' This is really confusing because I have assigned default carriers. I assume this has something to do with the actual CSS code for the theme but I'm not sure how I should edit it.Any help would be great! Link to comment Share on other sites More sharing options...
hippooflove Posted December 7, 2010 Share Posted December 7, 2010 HiNot an expert but if it helps,Have you got the same ISO code in your carrrier as your zones and country.for example if you are in United Kingdom then you need UK in carrier, zones, country so it all ties up. or whatever country you want to use.hope that helps a bit.Barry Link to comment Share on other sites More sharing options...
dressnthecity Posted December 7, 2010 Author Share Posted December 7, 2010 I have no idea what an ISO code is. Where can I check this??- Thanks Barry Link to comment Share on other sites More sharing options...
rocky Posted December 8, 2010 Share Posted December 8, 2010 Make sure the carrier is in the zone of the currently-logged-in customer, then go to the Shipping tab, select the carrier in the dropdown, enter shipping prices, then click Save. Link to comment Share on other sites More sharing options...
dressnthecity Posted December 8, 2010 Author Share Posted December 8, 2010 As silly as this sounds I didn't put down shipping values which is why it didn't show! duh! Thanks Rocky. Link to comment Share on other sites More sharing options...
dressnthecity Posted December 8, 2010 Author Share Posted December 8, 2010 One quick one Rocky, How do I get rid of the gift wrap option? I tried disabling this in the modules but it still appears at the check out.Thanks in advance Link to comment Share on other sites More sharing options...
rocky Posted December 8, 2010 Share Posted December 8, 2010 Go to the Preferences tab and change "Offer gift wrapping" to "No", then click Save at the bottom of the page. Link to comment Share on other sites More sharing options...
dressnthecity Posted December 8, 2010 Author Share Posted December 8, 2010 I have but it's not disabling it. I think it has something to do with the theme code:s Any more idea's on what to do? Link to comment Share on other sites More sharing options...
rocky Posted December 8, 2010 Share Posted December 8, 2010 I guess you will have to {* comment out *} the code on lines 97-116 of order-carrier.tpl in your theme's directory: {if $giftAllowed} {l s='Gift'} <input type="checkbox" name="gift" id="gift" value="1" {if $cart->gift == 1}checked="checked"{/if} onclick="$('#gift_div').toggle('slow');" /> {l s='I would like the order to be gift-wrapped.'} {if $gift_wrapping_price > 0} ({l s='Additional cost of'} {if $priceDisplay == 1}{convertPrice price=$total_wrapping_tax_exc}{else}{convertPrice price=$total_wrapping}{/if} {if $use_taxes}{if $priceDisplay == 1} {l s='(tax excl.)'}{else} {l s='(tax incl.)'}{/if}{/if}) {/if} {l s='If you wish, you can add a note to the gift:'} <textarea rows="5" cols="35" id="gift_message" name="gift_message">{$cart->gift_message|escape:'htmlall':'UTF-8'}</textarea> {/if} Link to comment Share on other sites More sharing options...
dressnthecity Posted December 8, 2010 Author Share Posted December 8, 2010 Thanks for this Rocky, I'm really not technical so this question may sound silly but should I be putting {* comment out *} as a replacement of the red fields in your example above?Cheers Link to comment Share on other sites More sharing options...
rocky Posted December 9, 2010 Share Posted December 9, 2010 You should replace the above with: {*{if $giftAllowed} {l s='Gift'} <input type="checkbox" name="gift" id="gift" value="1" {if $cart->gift == 1}checked="checked"{/if} onclick="$('#gift_div').toggle('slow');" /> {l s='I would like the order to be gift-wrapped.'} {if $gift_wrapping_price > 0} ({l s='Additional cost of'} {if $priceDisplay == 1}{convertPrice price=$total_wrapping_tax_exc}{else}{convertPrice price=$total_wrapping}{/if} {if $use_taxes}{if $priceDisplay == 1} {l s='(tax excl.)'}{else} {l s='(tax incl.)'}{/if}{/if}) {/if} {l s='If you wish, you can add a note to the gift:'} <textarea rows="5" cols="35" id="gift_message" name="gift_message">{$cart->gift_message|escape:'htmlall':'UTF-8'}</textarea> {/if}*} Link to comment Share on other sites More sharing options...
dressnthecity Posted December 9, 2010 Author Share Posted December 9, 2010 Sorted!! Thank you x Link to comment Share on other sites More sharing options...
rocky Posted December 9, 2010 Share Posted December 9, 2010 Please edit your first post and add [sOLVED] to the front of the title.... Link to comment Share on other sites More sharing options...
Recommended Posts