syednazrulhassan
Forum Replies Created
-
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Transaction summaryyou can do so by searching settled transactions by date range in authorize.net account
My Settings are this https://imgur.com/a/7WDcF and refund works after settlement in sandbox
And “and waited for the order to be marked as ‘Completed’ in WooCommerce.”
this part i dont think order is marked completed automatically you need to manually mark order as complete onc you ship physical items but if you are selling only downloadable goods the order is marked completed as soon as payment is made
Note: Once there is successful transaction it will lead to settlement
Make sure you are using authorize and capture
and when transaction is settled overnight the refund would work fine
if transaction is settled it would result in Void
However i juste tested a previously settled transaction with auth and capture the same amount of order total
it resulted in this
This transaction has been approved. on 20-Aug-2017 04:44:20 UTCwith Transaction ID = 40005928111 using CREDIT and authorization code
Also i received the email of refund from authorize.net
And all is in sandbox mode
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Line item 1 is invalidIf you go to plugin main file line 432 to 442 you would fild following code
$i =1; foreach ( WC()->cart->get_cart() as $cart_item ) { $item_name = $cart_item['data']->get_title(); $item_quantity = $cart_item['quantity']; $item_unit_price = $cart_item['data']->get_price(); $sale->addLineItem($i, $item_name, $item_name, $item_quantity, $item_unit_price,'N'); $i++; }
Can you try after commenting it out
However this code has been tested with latest woocommerce 3.1.2 and wordpress 4.8 with default twentyfourteen theme and seems to work fine
- This reply was modified 7 years, 7 months ago by syednazrulhassan.
Please try to debug the plugin and find out which section is taking too long as i know the authorize.net transactions are not completing withing few seconds its taking longer time than expected.
There is no load time to show thank you
Its the wait time of payment response received from authorize.net servers that takes long time.
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Property of non-objectThank you for letting me know can you do me one more favour if possible?
can you change the line 695 from
$chargestatus = get_post_meta( $post->ID, '_authorizenet_charge_status', true );
to
$order_id = $post->ID ; $chargestatus = get_post_meta( $order_id, '_authorizenet_charge_status', true );
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Capture Payments LaterGo to order detail page you should see a metabox on right hand side either above or below the order details check the box and save the order it would internally attempt to capture payment
Check this solution that i gavelast week
https://www.ads-software.com/support/topic/authorize-net-addon-how-can-i-change-receipt-description/If this doesn’t work let me know.
Did workaround worked for you ?
Has your issue been resolved yet with different plugin above ?
Closed here
Shot : https://imgur.com/a/be7Ii
Please add following code `$i =1;
foreach ( WC()->cart->get_cart() as $cart_item ) {$item_name = $cart_item[‘data’]->get_title();
$item_quantity = $cart_item[‘quantity’];
$item_unit_price = $cart_item[‘data’]->get_price();$sale->addLineItem($i, $item_name, $item_name, $item_quantity, $item_unit_price,’N’);
$i++;
}`Below the line that says
$sale->card_code = $cvc;
Thanks that fixes your issue an customer receive
Closing this
- This reply was modified 7 years, 8 months ago by syednazrulhassan.
- This reply was modified 7 years, 8 months ago by syednazrulhassan.
It maybe possible that someone customized code for client earlier if client was using same plugin but if code was not customized on this plugin there is a chance that client could be using different plugin that would have been sending line items