sunrise99 Posted July 29, 2009 Share Posted July 29, 2009 Hi sammie, Thanks for your reply. I only need DCC module, I don't want to install CCGV module. Best Regards, Quote Link to comment Share on other sites More sharing options...
sander010587 Posted July 29, 2009 Share Posted July 29, 2009 Thanks for your reply.I only need DCC module, I don't want to install CCGV module. Best Regards, Okay, it is your choice. I can only say that installing the module which is specially created to work with one page checkout is easier to install and you can disable the vouchers in your admin. I only use the discount coupons... cheers Quote Link to comment Share on other sites More sharing options...
steve_s Posted July 29, 2009 Share Posted July 29, 2009 Was anyone able to make the telephone number field a required field? If so how? Hi Sofia, includes/checkout/billing_Address.php find <td class="main"><?php echo ENTRY_TELEPHONE; ?><br><?php echo tep_draw_input_field('billing_telephone', (isset($_SESSION['onepage']['customer']) ? $_SESSION['onepage']['customer']['telephone'] : ''), 'style="width:80%;float:left;"'); ?></td> change it to <td class="main"><?php echo ENTRY_TELEPHONE; ?><br><?php echo tep_draw_input_field('billing_telephone', (isset($_SESSION['onepage']['customer']) ? $_SESSION['onepage']['customer']['telephone'] : ''), 'class="required" style="width:80%;float:left;"'); ?></td> Quote Link to comment Share on other sites More sharing options...
iyah Posted July 29, 2009 Share Posted July 29, 2009 Hi,Now this module Works with CCGV module: http://www.oscommerce.com/community/contri...search,vouchers version 5.20a But I want to know whether it can support Discount Coupon Codes - DCC module ? http://addons.oscommerce.com/info/4269 Thanks & Best Regards, David I have the DCC installed on my shop and was unable to get it working with One page checkout. This was discussed earlier in this thread but cant be bothered to search the thread for it. Basically, you need a coder. IT Webexperts quoted me $300 to have them work together. Sophia Quote Link to comment Share on other sites More sharing options...
t_jones_tech Posted July 31, 2009 Share Posted July 31, 2009 Has anyone figured out how to solve the issue when you log in and then try to update your billing address on the checkout page (the address does not change until the page is reloaded). The shipping address works fine after fixing the obvious typo in the code, but the billing address is still borked and won't refresh properly... I'm leaning toward checkout.js as the source of the issue...... anyway, if you know more than I do (which would be pretty easy!) do share the fix. :) Thanks! PS It works fine on the demo site. So either they have something newer than 1.06 or it's something that relies on something else that can vary between servers/file versions. Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 1, 2009 Share Posted August 1, 2009 Has anyone figured out how to solve the issue when you log in and then try to update your billing address on the checkout page (the address does not change until the page is reloaded). The shipping address works fine after fixing the obvious typo in the code, but the billing address is still borked and won't refresh properly... I'm leaning toward checkout.js as the source of the issue...... anyway, if you know more than I do (which would be pretty easy!) do share the fix. :) Thanks! PS It works fine on the demo site. So either they have something newer than 1.06 or it's something that relies on something else that can vary between servers/file versions. This is the function that updates the address in checkout.js updateAddressHTML: function (type){ var checkoutClass = this; this.queueAjaxRequest({ url: this.pageLinks.checkout, data: 'action=' + (type == 'shipping' ? 'getShippingAddress' : 'getBillingAddress'), type: 'post', beforeSendMsg: 'Updating ' + (type == 'shipping' ? 'Shipping' : 'Billing') + ' Address', success: function (data){ $('#' + type + 'Address').html(data); }, errorMsg: 'There was an error loading your ' + type + ' address, please inform IT Web Experts about this error.' }); }, Quote Link to comment Share on other sites More sharing options...
t_jones_tech Posted August 1, 2009 Share Posted August 1, 2009 This is the function that updates the address in checkout.js Hi Steve, Thanks for the reply. I was looking at that function exactly just a few days ago, but had no idea what to do with it. Perhaps I'll try swapping the 'shipping' condition for billing. Quote Link to comment Share on other sites More sharing options...
t_jones_tech Posted August 1, 2009 Share Posted August 1, 2009 (edited) Never mind, I solved it. Change line 433 in checkout.php from onePage.updateAddressHTML('payment'); to onePage.updateAddressHTML('billing'); Just a typo. Edited August 1, 2009 by t_jones_tech Quote Link to comment Share on other sites More sharing options...
iyah Posted August 6, 2009 Share Posted August 6, 2009 I have the Babelfish Transulation installed prior to adding one page checkout. I noticed that if my site is not in english and a customer clicks on checkout they get this error "URL: https://secured.mysite/catalog/checkout_shi...sCsid=..." !-- languages //--> <tr> <td> <?php $Babellink = "http://babelfish.yahoo.com/translate_url?doit=done&url="; $MainURL = "http://" . $_SERVER["HTTP_HOST"]; $URLlink = $_SERVER["REQUEST_URI"]; $LINKext = "&lp=en_"; # Edit this from en to what ever your original language refernce is. $info_box_contents = array(); $info_box_contents[] = array('text' => 'Babelfish Translation'); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => ' <!-- BEGIN ALL EDITING --> <table width="175" border="0"> <tr> <td><script type="text/javascript"> //<![CDATA[ document.write("<a style=\"color:#000000;font-weight:normal;\" target=\"_top\" href=\"'.$URLlink.'\"><img src=\"images/languages/english.gif\" width=\"18\" height=\"12\" border=\"1\" alt=\"English\"></a>"); document.close(); //]]> </script></td> <td><script type="text/javascript"> //<![CDATA[ document.write("<a style=\"color:#000000;font-weight:normal;\" target=\"_top\" href=\"'.$Babellink.$MainURL.$URLlink.$LINKext.'zh\"><img src=\"images/languages/chinese.gif\" width=\"18\" height=\"12\" border=\"1\" alt=\"Chinese\" /></a>"); document.close(); //]]> Quote Link to comment Share on other sites More sharing options...
iyah Posted August 6, 2009 Share Posted August 6, 2009 The above code is the only file added to mysite from the Babelfish Contribution. Does anyone know where I can change the direction of the page to skip checkout_shipping.php and go to checkout.php? Quote Link to comment Share on other sites More sharing options...
iyah Posted August 6, 2009 Share Posted August 6, 2009 The above code is the only file added to mysite from the Babelfish Contribution. Does anyone know where I can change the direction of the page to skip checkout_shipping.php and go to checkout.php? The error message I get is acturally "HTTP request failed with error SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:lib(20):func(144):reason(134) (60) for URL: https://secured.mysite...." My SSL cert works except for this situation. Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 6, 2009 Share Posted August 6, 2009 The error message I get is acturally "HTTP request failed with error SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:lib(20):func(144):reason(134) (60) for URL: https://secured.mysite...." My SSL cert works except for this situation. That babelfish javascript is interfering with the javascript for one page checkout, why is it there ?, what are you translating? Steve Quote Link to comment Share on other sites More sharing options...
RobinEkstrom Posted August 6, 2009 Share Posted August 6, 2009 Hello... First of all, _GREAT_ contrib!! Its working GREAT with STS (after some bugfixes)! Is there anyone who has a solution for this contrib in One Page Checkout? http://addons.oscommerce.com/info/5825 It's a great contrib - and it's really needed! It shouldnt be so hard to do it.. because its only a few lines in checkout_process.php that should be changed. If someone knows, PLEASE respond!! Thanks, Robin. Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 7, 2009 Share Posted August 7, 2009 Hello... First of all, _GREAT_ contrib!! Its working GREAT with STS (after some bugfixes)! Is there anyone who has a solution for this contrib in One Page Checkout? http://addons.oscommerce.com/info/5825 It's a great contrib - and it's really needed! It shouldnt be so hard to do it.. because its only a few lines in checkout_process.php that should be changed. If someone knows, PLEASE respond!! Thanks, Robin. simply do a search in the download files using simple search and replace and add the code in one page checkout, ie create account html, order email will still be html Quote Link to comment Share on other sites More sharing options...
RobinEkstrom Posted August 9, 2009 Share Posted August 9, 2009 simply do a search in the download files using simple search and replace and add the code in one page checkout, ie create account html, order email will still be html Thanks! I have done that, but when I have added a order the customer details is deleted from their account..... Can you please try to help me out? :) Quote Link to comment Share on other sites More sharing options...
t_jones_tech Posted August 9, 2009 Share Posted August 9, 2009 (edited) Well folks, I have everything mostly working, but with the 'PayPal IPN Module 2.3.4.7' payment module, when a user is not logged in, he/she receives the pop-up error "There was an error setting payment method.......etc." This error occurs while the checkout page is processing the freshly entered billing address info. Seems to work fine when the user logs in, so there must be a difference in how it is interacting with the module based on logon state. I've already tried commenting out the two error message lines suggested earlier in this thread, no luck. Ideas and solutions most welcome. Edited August 9, 2009 by t_jones_tech Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 9, 2009 Share Posted August 9, 2009 Thanks! I have done that, but when I have added a order the customer details is deleted from their account..... Can you please try to help me out? :) Hi send me link to the version of that contribution you are using Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 9, 2009 Share Posted August 9, 2009 Well folks, I have everything mostly working, but with the 'PayPal IPN Module 2.3.4.7' payment module, when a user is not logged in, he/she receives the pop-up error "There was an error setting payment method.......etc." This error occurs while the checkout page is processing the freshly entered billing address info. Seems to work fine when the user logs in, so there must be a difference in how it is interacting with the module based on logon state. I've already tried commenting out the two error message lines suggested earlier in this thread, no luck. Ideas and solutions most welcome. Make them login first, you can use FEC to combine login/create account to one file, then install account create success skip, so now you only have 2 pages to checkout, problem solved, Is all i can suggest i tried using a paypal direct standard and one page checkout did some strange things Quote Link to comment Share on other sites More sharing options...
RobinEkstrom Posted August 9, 2009 Share Posted August 9, 2009 Hi send me link to the version of that contribution you are using I have sent you a private message with details. Thanks! Quote Link to comment Share on other sites More sharing options...
llz925 Posted August 9, 2009 Share Posted August 9, 2009 Hi - This looks like a great contibution, but I'm having some problems with it. I've installed all the files, made the modifications to the correct files and now I queried my database and it give me this: Error SQL query: INSERT INTO configuration_group( configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible ) VALUES ( 7575, 'One Page Checkout', 'Settings for one page checkout', 16, 1 ) ; MySQL said: Documentation #1146 - Table 'eveningsidestore.configuration_group' doesn't exist I don't understand what I've done wrong. I also can't find this contibution in the admin section to turn on or off. My store looks like it hasn't been affected at all, nothing has changed. Anyone can help? Thanks Liz Quote Link to comment Share on other sites More sharing options...
iyah Posted August 10, 2009 Share Posted August 10, 2009 That babelfish javascript is interfering with the javascript for one page checkout, why is it there ?, what are you translating? Steve Thanks Steve for such help again. The purpose of the babelfish contribution is to translate the entire site into a few different languages. Even when I disabled one page checkout I got the error. Could it be something else? Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 10, 2009 Share Posted August 10, 2009 Hi - This looks like a great contibution, but I'm having some problems with it. I've installed all the files, made the modifications to the correct files and now I queried my database and it give me this: Error SQL query: INSERT INTO configuration_group( configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible ) VALUES ( 7575, 'One Page Checkout', 'Settings for one page checkout', 16, 1 ) ; MySQL said: Documentation #1146 - Table 'eveningsidestore.configuration_group' doesn't exist I don't understand what I've done wrong. I also can't find this contibution in the admin section to turn on or off. My store looks like it hasn't been affected at all, nothing has changed. Anyone can help? Thanks Liz Hi Liz for some reason its saying you dont have the configuration_group table are you runing the sql on the right database? Steve Quote Link to comment Share on other sites More sharing options...
llz925 Posted August 11, 2009 Share Posted August 11, 2009 Hi Liz for some reason its saying you dont have the configuration_group table are you runing the sql on the right database? Steve I thought I was! There is only one datebase on the account. There are two logins though, didn't think that made a difference. I'm getting this error now when I go to sign in as a customer to the store: 1054 - Unknown column 'guest_account' in 'field list' select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id, guest_account from customers where customers_email_address = '[email protected]' and guest_account='0' [TEP STOP] I'm gonna see if reinstalling the files from the contribution helps. Maybe I missed something? Quote Link to comment Share on other sites More sharing options...
llz925 Posted August 11, 2009 Share Posted August 11, 2009 Hi Liz for some reason its saying you dont have the configuration_group table are you runing the sql on the right database? Steve Hi Steve - So I redid the install and figured out how to run the SQL query in the database (btw you were right, there were two and I queried the wrong one before) and it appeared to work, but not quite. I get this when I try to checkout as a guest customer: 1054 - Unknown column 'customers_dummy_account' in 'field list' insert into orders (customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, customers_dummy_account, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, date_purchased, orders_status, currency, currency_value) values ('', 'Liz Seivert', '', '1111 Fake St.. #7', '', 'West Seneca', '14555', 'NY', 'United States', '', '[email protected]', '2', '', 'Liz', '', '1111 Fake St.. #7', '', 'West Seneca', '14555', 'NY', 'United States', '2', 'Liz ', '', '1111 Fake St.. #7', '', 'West Seneca', '14555', 'NY', 'United States', '2', 'Check/Money Order', '', '', '', '', now(), '1', 'USD', '1.00000000') [TEP STOP] ______________________________ And I get this if I try to login as a customer account: 1054 - Unknown column 'guest_account' in 'field list' select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id, guest_account from customers where customers_email_address = '[email protected]' and guest_account='0' [TEP STOP] Plus the admin site is still not showing anything but a blank page. Your help is much appreciated!! Liz Quote Link to comment Share on other sites More sharing options...
steve_s Posted August 11, 2009 Share Posted August 11, 2009 Thanks Steve for such help again. The purpose of the babelfish contribution is to translate the entire site into a few different languages. Even when I disabled one page checkout I got the error. Could it be something else? Hi Sorry for the delay, for delay it might be something to do with this what im not sure $MainURL = "http://" . $_SERVER["HTTP_HOST"]; $URLlink = $_SERVER["REQUEST_URI"]; Steve Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.