Jump to content

sparky5693

Member
  • Posts

    54
  • Joined

  • Last visited

Everything posted by sparky5693

  1. I could really use this as well.
  2. 5.08 messed up my print order form (international orders). Check out this cap
  3. Thank you. I'll try playing with it shortly.
  4. Ever figure out a solution to this? Today I shipped an order that had been cancelled.
  5. Any customer that uses a +4 zip code is getting stuck in a loop during checkout. If I change their zip code to standard 5 digit it works fine. Any ideas?
  6. My store logo is too wide to fit correctly when I print an order form. Anyone have some tips on what I can do to keep it from being cut off by the shipping address?
  7. I'm on the right track, but I was wondering if someone can tell me what I did wrong here.... all it's giving me is the priority international. I was hoping to also offer first class mail international package. if(($sum>0) && (($api=="RateV3") || ($key=="First-Class Mail<sup>®</sup> International Package") or ($key=="Priority Mail<sup>®</sup> International"))){ $key = html_entity_decode($key);
  8. I'm using cubecart 3. This is really annoying. I actually use and like the IPN, and it's working fine from my end. I'd hate for paypal to "disable" the service.
  9. Received this from paypal: Please check your server that handles PayPal Instant Payment Notifications (IPN). IPNs sent to the following URL(s) are failing: http://www.xxxxxxxxxxxx.com/modules/gateway/ipn.php If you do not recognize this URL, you may be using a service provider that is using IPN on your behalf. Please contact your service provider with the above information. If this problem continues, IPNs may be disabled for your account. Thank you for your prompt attention to this issue. Thanks, PayPal The store is using express checkout, and seems to work fine. Anyone have and idea what's going on?
  10. This is really a pain for me. Probably a third of my orders are international. At the moment, sometimes shipping is working, other times it isn't.
  11. Well, this works too But now I have a really weird problem. Using either my method, or your method, I only get a shipping quote if there is 1 item in the cart. Any more items in the cart result in a blank field. //if(($sum>0) && (($api=="RateV3") || ($key=="First-Class Mail International Package") or ($key=="Priority Mail International"))){
  12. Code says it doesn't work in php5, is there a version for php5?
  13. I figured it out... Edit login.tpl from /skins/yourskin/styleTemplates/content/ Change this line <td><input name="remember" type="checkbox" value="1" {CHECKBOX_STATUS} /></td> to <td><input name="remember" type="checkbox" value="1" checked="checked" {CHECKBOX_STATUS} /></td> Now... does anyone know how to keep this box checked, and not even give the option for the customer to un-check it? Maybe just hide it?
  14. How do I set the "remember me" box to be checked by default during customer login?
  15. I had thought this would work, but it just gives me a blank shipping field. if(($sum>0) && (($api=="RateV3") || ($key=="First-Class Mail International, Priority Mail International"))){ then I tried this, and it didn't work either if(($sum>0) && (($api=="RateV3") || ($key=="First-Class Mail International, Global Priority Mail - Variable Weight (Single)"))){
  16. I'm trying to learn this code a bit.... what if I wanted both First class mail international, and global priority, how do I specify them both. I understand how to add 1, but putting the two together has me lost.
  17. Okay, I found a mod by Hafree, and made a very small change to make it work. Open /modules/shipping/USPS/calc.php and find: if($sum>0) change it to if(($sum>0) && (($api=="RateV3") || ($key=="Priority Mail International"))){ Does anybody read these anyway?
  18. Any chance on updating this for v4?
×
×
  • Create New...