

Sparticus
Members-
Content count
31 -
Joined
-
Last visited
Profile Information
-
Real Name
SpaceChannel5
-
[Contribution] iOSC - mobile version of OSC on your iPhone
Sparticus replied to bumbarash's topic in General Add-Ons Support
This needs updating. I installed version 2.0c and mobile_checkout_confirmation.php only has 236 line. are the codes for one complete block or in 2 different sections? Please make this easier. Nevermind, I got it working, all you have to do is change line 94 to this echo $payment_modules->process_button(); no need to copy and paste anything else. -
[Contribution] iOSC - mobile version of OSC on your iPhone
Sparticus replied to bumbarash's topic in General Add-Ons Support
I have other problems with this addon but right now i fixed my viewing of product info on iphone before when i clicked on the product, it would take me to the full site, now i did this to be able to view properly on iphone. go to mobile/includes/configure.php, add this line define ('FILENAME_MOBILE_PRODUCT_INFO', 'mobile_product_info.php'); go to mobile/includes/modules/products.php change this part in line 27 or around that to this: tep_mobile_link(FILENAME_MOBILE_PRODUCT_INFO Refresh your pages and try it out....looks good on my iphone. -
I have other problems with this addon but right now i fixed my viewing of product info on iphone before when i clicked on the product, it would take me to the full site, now i did this to be able to view properly on iphone. go to mobile/includes/configure.php, add this line define ('FILENAME_MOBILE_PRODUCT_INFO', 'mobile_product_info.php'); go to mobile/includes/modules/products.php change this part in line 27 or around that to this: tep_mobile_link(FILENAME_MOBILE_PRODUCT_INFO Refresh your pages and try it out....looks good on my iphone. :thumbsup: whoops! this post was meant for this thread http://forums.oscommerce.com/topic/327785-contribution-iosc-mobile-version-of-osc-on-your-iphone/page__st__340
-
Is it possible to allow someone to buy options in a product without paying for the main product when they want to? Such as a DVD set movie product. The customer goes to it's product page, cancel out the DVD set product, select a Disc to buy from the set, add to cart and pay.
-
what version would that be? I might be able to use it.
-
nobody knows how to do this?
-
If I have more than one type of payment activated, how do I make it autoselect the first payment automatically when customers reach the checkout page?
-
I have this code for default payment automatically selected when there's more than one payment in checkout_payment.php: <?php if (sizeof($selection) > 1) { if ($i == 0) { $checked = true; } else { $checked = false; } echo tep_draw_radio_field('payment', $selection[$i]['id'], $checked); } else { echo tep_draw_hidden_field('payment', $selection[$i]['id']); }?> It works when the page checkout_confirmation.php is loaded but doesn't work with checkout.php. How do I make One Page Checkout do automatic payment selection?
-
I already solved the problem, answer posted up there.
-
I got it to work but how can I make it update more quicker...can I get rid of updating the bottom module order total? Can the checkout just show the top order total?
-
Version 1.2, is anybody's cart quantity auto update working?
-
Actually I just found an easy way to change all prices quickly. Went to PHPMyAdmin, Select Products, click Structure, in Products_Price field, change Type "Decimal(15,4)" to "Decimal(15,2). All the last two digits in prices disappeared. Sweetness.
-
OK, I know what's going on with this now. I used to have percentage discount on some products then when I turn the percentage discount off, it would change product price to like $105.9632. The sub-total calculation on checkout.php rounds it off. I have to go through all of my products and reprice them by knocking off the last two digits.
-
I emailed them about this problem over a month ago and still waiting for them to say something. But a temporary fix, I use my old checkout_process.php with OPC and everything works normally for some reason.
-
checkout.php is showing incorrect calculation for sub-total. like Sub-Total: $105.96 when it should be $105.97 after the order is made, the sub-total is correct in the email confirmation, just not correct in checkout.php i went back to original checkout_confirmation and the sub-total is correct. this seem like an easy fix, can someone figure this out?