Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

grayousious

Pioneers
  • Posts

    29
  • Joined

  • Last visited

Posts posted by grayousious

  1. do the following

    (line 106 in my checkout.php)

    change it to

     //$onePageCheckout->fixTaxes();

    and

    in checkout_process.php line 77

    change it to

     //$onePageCheckout->fixTaxes();

     

    now it is showing the correct amount if customer is loged in before they visit checkout page

     

    Commenting that out fixed the taxes but stopped the Shipping from being added to the total. I ended up changing up the fixTaxes() function itself and now everything is great! Thanks for pointing me in the right direction.

  2. Hi Gray

     

    in checkout.php find this piece of code

    <a id="changeBillingAddress" href="<?php echo tep_href_link(FILENAME_CHECKOUT_PAYMENT_ADDRESS, '', $request_type);?>">

    change it to

    <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_PAYMENT_ADDRESS, '', $request_type);?>">

     

    find this piece of code

    <a id="changeShippingAddress" href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', $request_type);?>">

     

    change it to

    <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', $request_type);?>">

     

    Steve

     

    Worked like a charm! Everything is perfect!

  3. Hi Gray,

     

    didnt this fix work ?

    checkout.php

    there is a typo in checkout.php around line 426 - 433

     

    Change onePage.updateAddressHTML('payment');

     

    to

     

    onePage.updateAddressHTML('billing');

     

    Steve

     

    Yes, I have applied that fix, but still, both 'Change Address' buttons do nothing. Perhaps I can just have them send the customer to the old address change pages instead. Any idea how I would do that?

  4. Hi Gary,

     

    I take you did this change to amend changing billing address,

     

    checkout.php

    there is a typo in checkout.php around line 426 - 433

     

    Change onePage.updateAddressHTML('payment');

    to

    onePage.updateAddressHTML('billing');

     

    At the top of includes/checkout/shipping_address.php replace the if statement with:

     

    if (isset($_SESSION['customer_id'])){
     echo tep_address_label($_SESSION['customer_id'], $_SESSION['sendto'], true, ' ', '<br>');
    }else{

     

    Steve

     

    The if statement there seems to have made the Shipping Address show up, thanks so much Steve! Now all I have to figure out is the 'Change Address' button fix. Is there any information I can provide to help in solving this?

     

    Thanks,

     

    Gray

  5. Hi guys, I have installed V1.6 of this contribution two days ago and have been setting it up and applying several fixes mentioned in this thread. The checkout is working for everything I need except for two things I can't seem to resolve.

     

    1. The Shipping address does not show up on the page, just a comma. As you can see in the screenshot below the billing address shows up fine, and also all addresses show up in the backend invoice after the order has been placed. This empty field will likely freak out some customers.

     

    2. To add to the previous problem, the 'Change Address' buttons do nothing, as many other posts have mentioned. The checkout button and update cart buttons work fine though.

     

    checkout.jpg

     

    I should also mention I am forcing logins so the account will already have been made by the time they reach the checkout page.

     

    I have tried most of the fixes mentioned in this thread.

     

    Please feel free to try my checkout at the link below and leave "test" in the comment.

    www.toysonfire.ca

     

    Any help resolving these two issues would be much appreciated.

     

    Regards,

     

    Gray

  6. Hey Sam, was wondering if you could take a quick look at my page and perhaps point me in the right direction to correct an error in your contribution. Seems to only happen when I want to display the categories "Above" (which I would like to do). The Categories search results are displayed above the product search results, which is great, but then when it dispalys the products, the same categories are listed in there also with the products.

     

    Check the link below for an example:

    http://www.toysonfire.ca/advanced_search_r...ywords=superman

     

    I seems like I need to reset an array or something before the product search result display, but I am not sure which array or how?

     

    Should I use unset() ?

     

    Thanks for your time,

     

    Gray

  7. Generally my customers do not seem to be accustomed to using search operators. Is there a way I can just count every space as an AND operator instead of having the two words be a string? I have been searching the forums and contributions without any luck. If there already is a solution to this problem that I missed please excuse this post and kindly point in the right direction or if not please advise me as to where I should start working with the code. Maybe somewhere in the advanced_search_result.php.

     

    Thanks in advance for any advice, assistance.

     

    -Gray

     

    http://www.toysonfire.ca/store//catalog/

×
×
  • Create New...