-
1. Re: Shipping Options Lock iPad web browser
Liam Dilley Oct 9, 2013 5:04 AM (in response to web2creative)I have tested this on three sites and it all works fine here. You got any other scripting running? Could cause a conflict in your situation on an ipad.
-
2. Re: Shipping Options Lock iPad web browser
web2creative Oct 9, 2013 5:12 AM (in response to Liam Dilley)Liam, thanks for checking so quickly. I don't have any other scripts on that page. I first run into this problem on a site we built and thought maybe there was a conflict with other scripts. So I implemented the setting on a BC default site http://boyzonemagazine.businesscatalyst.com to ensure there are no conflicts. I expected it to work but it didn't.
But if it works on your iPad (I assume you tested also on iPad 3 with iOS 7.0.1) than it may be something on my iPad that is creating this issue. I tested it a number of times and it didn't work. I am currently upgrading to iOS 7.0.2 (just released) and will see if this fixes the problem. Again thanks for checking!
-
3. Re: Shipping Options Lock iPad web browser
Liam Dilley Oct 9, 2013 5:13 AM (in response to web2creative)I got Ipad 2 and latest OS. What happens when you try an iphone?
I Will also fire up xcode and test as I develop apps I have the full test renderer. It has all types, il try on that test site.
-
4. Re: Shipping Options Lock iPad web browser
Liam Dilley Oct 9, 2013 5:17 AM (in response to Liam Dilley)Ok, I just quickly tested latest OS iphone and ipad throuth xcode and that site you linked works fine for me. You tried a different ipad or iphone? Tried chrome on the ipad?
Rebooted etc?
Side note, noticed one of my apps dies on ipad that I need to sort
-
5. Re: Shipping Options Lock iPad web browser
web2creative Oct 9, 2013 5:19 AM (in response to web2creative)Just tested with iOS 7.0.2 ans it still gets stuck. Have to restert the iPad. What a pain!
-
6. Re: Shipping Options Lock iPad web browser
web2creative Oct 9, 2013 5:45 AM (in response to Liam Dilley)Tested with Safari on iPhone 3GS and it works fine.
Tested with Safari on iPad Mini with iOS 7.0.1 and it got stuck
Tested with Chrome on iPad 3 with iOS 7.0.2 and it got stuck
-
7. Re: Shipping Options Lock iPad web browser
tyj00123 Oct 14, 2013 3:32 PM (in response to web2creative)Am glad I just found this post as I was going nuts trying to work out what I had done wrong...
I am having exact same issue on iOS 7.0.2, however older iPad works fine.
I have to restart Safari each time.. (don't need to restart whole iPad)
-
8. Re: Shipping Options Lock iPad web browser
tyj00123 Oct 14, 2013 3:38 PM (in response to tyj00123)ps: I added that automatic-select shipping option script and it fixes it A.O.K.
-
9. Re: Shipping Options Lock iPad web browser
web2creative Oct 14, 2013 4:25 PM (in response to tyj00123)How do you restart Safari?
I looked for options online and this is the only one I found:
1. Open the Safari webpage that is frozen.
2. Hold down that power button for a few seconds. A “slide” will open up on your screen.
3. Do not slide the “slide”. Instead, hold down the “home” button on your Ipad for 5-10 seconds until the desktop page appears.
Is there a different way?
-
10. Re: Shipping Options Lock iPad web browser
tyj00123 Oct 14, 2013 5:05 PM (in response to web2creative)I go back to home on the ipad, then click down home button twice, and swipe across open apps until I see Safari. Then I swipe Safari up off top of screen, which force quits it.
-
11. Re: Shipping Options Lock iPad web browser
tyj00123 Oct 14, 2013 5:06 PM (in response to tyj00123)make sure you swipe the actual Safari window off the top of the screen, not the app icon.
-
12. Re: Shipping Options Lock iPad web browser
web2creative Oct 14, 2013 7:18 PM (in response to tyj00123)Thank you.
-
13. Re: Shipping Options Lock iPad web browser
TheBCMan Oct 14, 2013 8:08 PM (in response to web2creative)Look at your code, it's a loop:
<script type="text/javascript">
var shippingOptions = document.getElementById('ShippingOptions');
if (shippingOptions) {
shippingOptions.selectedIndex = 1;
shippingOptions.onchange();
}
</script>
Although most browsers I've come across wont fire the onchange event unless you manually change the selection, I can't say what IOS would do, but it seems it fires the onchange event on any change. Remove the shippingOptions.onchange(); from your code and see if still hangs, if it doesn't you know the issue and you just have to refactor your code.
-
14. Re: Shipping Options Lock iPad web browser
Liam Dilley Oct 14, 2013 8:11 PM (in response to TheBCMan)Still works fine here. Not sure what cases cause this to happen.
-
15. Re: Shipping Options Lock iPad web browser
TheBCMan Oct 14, 2013 8:38 PM (in response to Liam Dilley)Liam: Agreed, it shouldn't happen but it is obvious the javascript is going into a loop and locking up the device.
-
16. Re: Shipping Options Lock iPad web browser
Liam Dilley Oct 15, 2013 12:22 AM (in response to TheBCMan)Thats the sollution they posted to fix it, not the casue of the problem.
-
17. Re: Shipping Options Lock iPad web browser
TheBCMan Oct 15, 2013 12:29 AM (in response to Liam Dilley)Sorry, I re-read the first post and then viewed the source code of the link and now confused.
Does the problem happen:
1. When that "solution code" is used?
2. When that "solution code" is not used?
3. In both cases?
-
18. Re: Shipping Options Lock iPad web browser
Florin Carlig Oct 15, 2013 3:56 AM (in response to web2creative)Hey guys,
We identified a bug that looks to happen only on the latest iPad update - iOS 7.0.2
The internal bug id is 3648478 - the dev team is currently looking for a way to fix it.
Thanks and regards,
Florin -
19. Re: Shipping Options Lock iPad web browser
web2creative Oct 15, 2013 4:40 AM (in response to Florin Carlig)Hi Florin, actually it happens only on iPad3 and iPad Mini regardless of the iOS. (it was happening with iOS 7.0.1 as well). I hope they can fix it. Thank you!
-
20. Re: Shipping Options Lock iPad web browser
DandyDahlia Oct 29, 2013 10:45 PM (in response to Florin Carlig)Hi Florin,
I'm confused on which code to use like theBCMan.
So far we have had 10 calls and emails from customers saying they gave up doing an order becuase of this. So we are loosing sales
What's the fix? What should we do?
We have approx 15 different shoping areas (one for each metro and each state in Australia)
-
21. Re: Shipping Options Lock iPad web browser
web2creative Oct 31, 2013 5:46 AM (in response to DandyDahlia)A solution to this is to use the script that Mario posted for automatic selection of the Shipping options. For some reason, when triggered by this script, the dialoque box does not get stuck. Just add this to the end of the Shoppinc Cart page:
<script type="text/javascript">
var shippingOptions = document.getElementById('ShippingOptions');
if (shippingOptions) {
shippingOptions.selectedIndex = 1;
shippingOptions.onchange();
}
</script>
-
22. Re: Shipping Options Lock iPad web browser
Dan Popa Nov 7, 2013 5:09 AM (in response to web2creative)This is a Safari bug introducd by the latest iOS update: the alert method called from onchange event handlers for SELECT tags freezes Safari and Chrome on iOS 7.
We fixed the issue, it will be available in the upcoming release, mid-november.
The alert from the shipping options onchange handler is called with a setTimeout only in Safari (and Chrome) on iDevice.
-
23. Re: Shipping Options Lock iPad web browser
Fubals Nov 11, 2013 9:41 PM (in response to Dan Popa)Hi Dan,
Can you please tell us the date when the fix will be released, and if we actually need to do anything??
I have now added in the script that was given by web2creative, but this is not really ideal as it jumps straight to the "shipping option succesfully chosen" message before the customer has had a chance to do anything... that could scare them away.
Heres a message I got from one of my clients customers....
"Just wanted to let you know that I have been having problems with buying online, using my ipad?!
The Safari browser hangs when I choose a shipping method (any!). there's a pop-up window that wont go away - i have to reboot the ipad!
I'm running the latest operating system release, version 7.0.3"
-
24. Re: Shipping Options Lock iPad web browser
Stephen Franklin Nov 11, 2013 10:01 PM (in response to Dan Popa)Had to do the same as Fubals last night Dan.
We have a Sale running at the moment and I have to agree with Fubals the shipping message is very off putting, although preferable to having a customer restart their iPad!
When exactly is the fix being rolled out?
Cheers,
Stephen
PS. iOS 7.0.3 on iPad by the way. Works fine on the iPhone running the same OS version.
-
25. Re: Shipping Options Lock iPad web browser
Fubals Nov 14, 2013 3:57 PM (in response to Stephen Franklin)Is there any update form BC staff on when the November release is coming...??
Nothing on the blog....
-
26. Re: Shipping Options Lock iPad web browser
Fubals Nov 18, 2013 9:02 PM (in response to Fubals)3659713 Fixed an issue in the check-out form that prevented users from selecting a shipping option when using Safari 6.1 with latest iOS version The fix by BC hasnt worked for me.... anyone else??
I just tested this on iPad3 running iOS 7.0.3 with Safar v7.0 and it still has the same problem once you choose the shipping option, it wont let you click ok to get rid of it.
-
27. Re: Shipping Options Lock iPad web browser
Stephen Franklin Nov 18, 2013 9:11 PM (in response to Fubals)Tested it this morning… no joy, same issue. Immediatily put the auto select JS fix back in.
Not sure if the update has been put applied though yet:
http://businesscatalyst.com/bc-blog/business-catalyst-scheduled-maintenance-2
The above is happening on the 21st.
Cheers,
Stephen
-
28. Re: Shipping Options Lock iPad web browser
fortunegreen Nov 18, 2013 9:25 PM (in response to Stephen Franklin)November release was delayed. See http://status.businesscatalyst.com/
Stephen, I believe your link is different from the release.
Penny
-
29. Re: Shipping Options Lock iPad web browser
Stephen Franklin Nov 18, 2013 9:27 PM (in response to fortunegreen)Thanks for the update Penny,
Yeah wasn't sure if the scheduled maintenance was connected to the update or not.
Stephen
-
31. Re: Shipping Options Lock iPad web browser
Greg.Tomkins Dec 5, 2013 9:20 PM (in response to Dan Popa)Well it is now 6 Dec, the Nov release went in on the 26 Nov and still we can't see a solution on iPad's selecting a shipping option.
Any further news on what is being done to rectify this?
-
32. Re: Shipping Options Lock iPad web browser
Fubals Dec 7, 2013 2:59 PM (in response to Greg.Tomkins)Hi Greg,
This is fixed. I tested a couple of weeks ago and again just now on iPad 3 with iOS 7.0.4 and it works fine...
Are you experiencing something different?
-
33. Re: Shipping Options Lock iPad web browser
Stephen Franklin Dec 8, 2013 12:42 PM (in response to Fubals)Hi guys, all working for me as well, same system as Fubals above.
sf d-)=
-
34. Re: Shipping Options Lock iPad web browser
Greg.Tomkins Dec 9, 2013 12:16 PM (in response to web2creative)Yes I finally got it working - the solution was that you need to ensure you have upgraded your iPad to IOS 7.0.4 - 7.0.3 was the culprit.
-
35. Re: Shipping Options Lock iPad web browser
DandyDahlia Aug 12, 2014 9:46 PM (in response to web2creative)Hi,
Has anyone had reports of this issue happening again too?
We had a customer last week call to say their ipad was frozen on checkout and then another today saying once they select shipping it wont do anything - they are using:
Mobile Safari iOS 7 (Tablet)
Does anyone have any ideas why it's all of a sudden back?
Is there a way to fix it?





