Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

BTBlomberg

Archived
  • Posts

    8
  • Joined

  • Last visited

About BTBlomberg

  • Birthday 12/31/1967

Profile Information

BTBlomberg's Achievements

  1. ganast, It looks like nothing has happened over the last year on this. I just found the same problem as sqadeer posted here: http://www.oscommerce.com/forums/lofiversion/i...php/t88470.html and actually posted it to the contribution list and was searching here to see where it might be posted to see your tread with these links. Had been searching a while for this type of problem too and search did not help. It would be nice to see what your 1.8 is like. ECHO has been good but you are right that errors, etc. are lacking in their presentation. Thanks,
  2. "Redeem" is the release or approve button in this case. It does not make sense to me but it may have to do with a translation issue.
  3. I tried to edit my last message again but it would not allow it. I left a tag I used to debug and make sure the code was being used. It is in the line: $selection_string .= '<div><br /><!-- what -->'; and is clearly the <!-- what --> tag. This is not needed so remove when you patch.
  4. Ok, here is at least an initial solution for the problem above. Edit the file: catalog/includes/modules/order_total/ot_coupon.php At line 60 find: function credit_selection() { global $customer_id, $currencies, $language; $selection_string = tep_draw_form('checkout_payment_gift', tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'), 'post'); $selection_string .= '<div><br />'; $selection_string .= TEXT_ENTER_GV_CODE . tep_draw_input_field('gv_redeem_code', 'redeem code') ; $selection_string .= tep_image_submit('button_redeem.gif', IMAGE_REDEEM_VOUCHER, 'onclick="return submitFunction()"'); $selection_string .= '</div><br /></form>'; return $selection_string; } Replace this with: function credit_selection() { global $customer_id, $currencies, $language; $selection_string = '<tr><td></td><td class="main">'; $selection_string .= tep_draw_form('checkout_payment_gift', tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'), 'post'); $selection_string .= '<div><br /><!-- what -->'; $selection_string .= TEXT_ENTER_GV_CODE . tep_draw_input_field('gv_redeem_code', 'redeem code') ; $selection_string .= ' '; $selection_string .= tep_image_submit('button_redeem.gif', IMAGE_REDEEM_VOUCHER, 'onclick="return submitFunction()"'); $selection_string .= '</div><br /></form></td></tr>'; return $selection_string; } This will put the instructions above the Redeem Code line and fix the Font issue with the text before the entry box "Enter Redeem Code". More may be able to be done to clean it more but this will get it working better than it was. Example:
  5. Saw the same thing after installing 5.18 and it clearly is poor HTML code and incomplete table structure. I am playing with it now and will post fix if I can figure it out.
  6. Well it looks like the version was not the problem just the Business Name being entered. I wonder if the addition of a radiobox for Residential/Business Address would make a difference with Residential being the default rather than solely being based on the Business Name being added. Just a thought.
  7. It may not help that the code FedExDC code is version is not the latest. The version in 1.2b is (fedexdc.php,v 1.1.1.1 2003/11/12) while Jay Powers latest is (fedexdc.php,v 1.3 2004/08/12). I had the quotes running in ValueMart for Joomla! and had way different numbers than what this is giving ont he same test server and account settings. The difference was at least $2. Now I did sign up with my company name but I operate out of my home and all his customers will be residential also. If i can I will be trying to migrate 1.2b's FedExDC.php over to the latest one. It uses an external tags file and I believe has the tag IDs in a more current state than the nearly 3 year old version. FedExDC 1.3 is almost 2 Years old itself, so that my need some looking into also. I am just suprised that with all the recent releases for this no one checked versions with vermonster.com. I must test the no company name at registration to see how that effects the cost, but it makes some sence but a lot of businesses are running out of homes these days and are counted as residential by FedEx of course. I am sure it was an attempt to make a switch between presenting the user with a residential rate or a business one.
  8. The first interaction with the server is suposed to subscribe the account and get the meter number. Of course you have to be signed up with the FedEx and have an your account linked to the test server (takes 24 to 48 hours after request). I actually got it from the API service rep when I was trying to get FedExDC working in a Joomla! ValueMart install for the same client. Had to abandon when I realized the FexEx Plugin was only set up to get rates and not ship or track. Once I had the Meter number it was easy to get it working, well after gettting over the fact that with GoDaddy/Wild West Reseller accounts need a Proxy Server entry added in the Curl Code. Not sure if other ISP's would have this issue too. Without the Proxy it could not talk to the FedEX Server.
×
×
  • Create New...