Page 12 of 14 FirstFirst ... 21011121314 LastLast
Results 111 to 120 of 131
  1. #111
    Join Date
    May 2008
    Posts
    442
    Plugin Contributions
    1

    Default Re: Authorize.net API with Card on File transactions support thread...

    The following are just recommendations for a future update to this module:

    1: The billing address address book id is not being saved so when you go to update a credit card you do not know which address is currently associated with that CC # on authorize.net

    2: When capturing the credit card store what type of card it is like Visa, Master Card, Amex, Discover. That can then be used to show the credit card's logo associated with the credit card being updated on the card_update page.

    3: Shipping address is not being populated on authorize.net Transaction Detail page at time of order, that is helpful to have as a backup way of confirming what shipping address was selected by a customer when the order was placed.
    Last edited by marcopolo; 11 Nov 2022 at 06:53 PM.

  2. #112
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,692
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    marco,
    i would suggest using the public github repo as opposed to having these discussions here.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  3. #113
    Join Date
    May 2008
    Posts
    442
    Plugin Contributions
    1

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by carlwhat View Post
    marco,
    i would suggest using the public github repo as opposed to having these discussions here.

    best.
    Ok no problem I submitted the code changes on there and added the remaining billing address update issue there as well.

    I did not see anyplace to add the three feature recommendations let me know if there is a place for that.

  4. #114
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,692
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by marcopolo View Post
    Found a bug:

    If a credit card that was previously used to make an order and customer choose NOT to save it then looking at the table customers_cc the enable field is N which hides the card from the customer update card screen and having it available as a saved card for future COF orders.

    Now if the customer on a future order uses the same card but this time chooses to save it then the table customers_cc enabled field is not being updated to Y from N.

    If you ADD the card from the update card page that does work.
    this has been fixed on the repo.

    Quote Originally Posted by marcopolo View Post
    Great thank you. Below fixes the one issue where the company name is not being populated when adding a new address from the update_card page.

    Around line 603 added the line that is in green below:
    $return['company'] = $_POST['company'];

    PHP Code:
     if ($_POST['address_selection'] == 'new') {
                    
    $this->addNewAddress();

                    
    $return['firstname'] = $_POST['firstname'];
                    
    $return['lastname'] = $_POST['lastname'];
                    
    $return['company'] = $_POST['company'];
                    
    $return['street_address'] = $_POST['street_address'];
                    
    $return['city'] = $_POST['city'];
                    if (empty(
    $_POST['zone_id'])) {
                        
    $return['state'] = $_POST['state'];
                    } else {
                        
    $return['state'] = zen_get_zone_name($_POST['zone_country_id'], $_POST['zone_id'],
                            (
    $_POST['state'] ?? ''));
                    }
                    
    $return['postcode'] = $_POST['postcode'];
                    
    $return['country']['title'] = zen_get_country_name($_POST['zone_country_id']); 
    this has also been fixed on the repo.

    Quote Originally Posted by marcopolo View Post
    The following are just recommendations for a future update to this module:

    1: The billing address address book id is not being saved so when you go to update a credit card you do not know which address is currently associated with that CC # on authorize.net

    2: When capturing the credit card store what type of card it is like Visa, Master Card, Amex, Discover. That can then be used to show the credit card's logo associated with the credit card being updated on the card_update page.

    3: Shipping address is not being populated on authorize.net Transaction Detail page at time of order, that is helpful to have as a backup way of confirming what shipping address was selected by a customer when the order was placed.
    i'm not sure about these recommendations. i will give them some thought.

    my opinion is that auth.net is for getting paid. it is not for verifying order details.

    1. i have never felt that the address is necessary to save and to verify it. currently every zen-cart order has 3 address fields; so now you want to verify the credit card address with the zen-cart address? i have never been a fan of ensuring that the billing address with the credit card is in the ZC db. most times it already is... but for me, have auth.net validate the card details, send me a token, and as long as that token works, use that for charging a customer. feel free to convince me other wise (although lets move it over to an issue on the repo...).

    2. a database change. maybe.

    3. codd-date normal form. if auth.net does not match, which address are you going to use?

    in the 10+ years this module has been in use at my clients, they have never made these requests. but maybe...
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #115
    Join Date
    May 2008
    Posts
    442
    Plugin Contributions
    1

    Default Re: Authorize.net API with Card on File transactions support thread...

    1: Real world use in my companies case is sometimes customers will state that they selected a shipping address and that we sent it to the wrong address and this is just another way to confirm what was captured at the time of order. We could login to auth's website to confirm what was captured at the time of order. Not a big deal just that extra spot to check something.

    3: If I was a customer and recently moved I would change my stored billing addresses with companies I have stored cc's with. The update card page edit cc section now does not show what address is stored for the credit card just gives a list of address(s) I have in my address book. So if I was the customer and was trying to update this I (me personally) would select the address or add a new one if not listed then submit. I would then go back in to verify it is now the billing address.

    This is where I pointed out the recommendation for capturing the address id so it can be confirmed back to the customer that the billing address has been updated if they want to confirm it.

    If you do update the logic on this page I would simply store the address id that the customer selected for the card and if still in the database have it be auto be selected with a message saying current billing next to the address. If the address has been deleted over time then keep current logic in which case the customer will update the address and if goes back into the screen to verify it will work as intended.

    Note there is a bug now if you try updating the address it says you did but does not update on auth's website.
    Last edited by marcopolo; 12 Nov 2022 at 04:58 PM.

  6. #116
    Join Date
    May 2008
    Posts
    442
    Plugin Contributions
    1

    Default Re: Authorize.net API with Card on File transactions support thread...

    Two more feature ideas I had for this module.

    1: Allow customer to set a default card to be auto selected at checkout if they have multiple cards saved.

    2: If an ADMIN is placing the order give an option to Authorize only or Authorize+Capture the sale at checkout.

  7. #117
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Authorize.net API with Card on File transactions support thread...

    @carlwhat would you please review and provide feedback for:

    https://docs.zen-cart.com/user/payme...horizenet_cim/

    I just realized last week that there was no documentation for this plugin.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #118
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,692
    Plugin Contributions
    9

    Default Re: Authorize.net API with Card on File transactions support thread...

    Quote Originally Posted by swguy View Post
    @carlwhat would you please review and provide feedback for:

    https://docs.zen-cart.com/user/payme...horizenet_cim/

    I just realized last week that there was no documentation for this plugin.
    done!

    minor changes.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  9. #119
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Authorize.net API with Card on File transactions support thread...

    great - merged.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #120
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: Authorize.net API with Card on File transactions support thread...

    I have a customer whose customers.customers_default_address_id values are getting scrambled - sometimes 0, sometimes another customer's address_book entry. Have you ever heard of this? Running authorizenet_cim version 2.3.2.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 
Page 12 of 14 FirstFirst ... 21011121314 LastLast

Similar Threads

  1. v155 Saving Credit Card Info with Authorize.Net
    By magneto in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 25 Jan 2021, 10:28 PM
  2. v154 Having Issues With Duplicate Transactions in Authorize.net
    By CSGODeimos in forum General Questions
    Replies: 1
    Last Post: 27 Sep 2017, 02:53 PM
  3. v151 Duplicate transactions authorize.net AIM
    By badarac in forum Built-in Shipping and Payment Modules
    Replies: 9
    Last Post: 9 Aug 2016, 03:52 PM
  4. Replies: 1
    Last Post: 31 May 2006, 05:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR