syednazrulhassan
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 - CCAvenue Add-on] CCAvenue Error@surajkumarmandal2015 , Please follow this thread to get solution i have a code there modified one that would resolve your issue
Please use this thread to get solution i have a modified plugin available there and it works fine on one site
Forum: Plugins
In reply to: [Contact Form 7 - CCAvenue Add-on] PHP 7.1 + CF7 5.1.4 Working CodeUpdate 1
I have also added following line of code oncf7-cc-avenue-add-on/includes/cf7_ccav_process_payment.php as line 167
else that results in Screen Grab
$amount = (float) $_SESSION['amount_total'];
The following lines from line 192 to 196 on
cf7-cc-avenue-add-on/includes/cf7_ccav_process_payment.php
$result .= '<input type="hidden" id="cf7ccav_ccavenue_nonce" value="$nonce">'; $result .= '<input type=hidden name="encRequest" value="'. $encrypted_data. '">'; $result .= '<input type="hidden" name="Amount" value="'.$_SESSION['amount_total'].'">'; $result .= '<input type="hidden" name="access_code" value="'. $access_code .'">'; $result .= '<input type="hidden" name="currency" value="'.$currency.'"/>';
Have been replaced by
$result .= '<input type="hidden" id="cf7ccav_ccavenue_nonce" value="'.$nonce.'">'; $result .= '<input type="hidden" name="encRequest" value="'. $encrypted_data. '">'; $result .= '<input type="hidden" name="access_code" value="'.$access_code.'">';
- This reply was modified 5 years, 5 months ago by syednazrulhassan.
- This reply was modified 5 years, 5 months ago by syednazrulhassan.
Hi, lonndugan,
I hope so its possible but for that customer must be logged in before getting that credit approved
There need to done some custom code to accomplish this
Regards
Forum: Plugins
In reply to: [Network Merchant Payment Gateway for WooCommerce] Emails?There should be an option within NMI gateway to disable the sent mails
Authorize Only places a hold on funds for 7 days in case of stripe so that fund can be captured within 7 days
However, Authorize and capture ensure the hold then capture occur at the same time simultaneously
Hi @elevory,
I just checked personally at my local setup and it worked fine
However can you go to
wp-content/plugins/authorizenet-woocommerce-addon/lib/shared/AuthorizeNetRequest.php
and on line no 14
change
public $VERIFY_PEER = true;
to
public $VERIFY_PEER = false;
Pleasecan you make sure all another plugin except woo commerce and authorize,net payment gateway is inactive and try please?
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Payment in GBPIF account is applied in UK it will be in GBP
Hi Can you try with default twentyfifteen theme please ?
Also for sandbox have you ysed accuntfrom https://sandbox.authorize.net/ ?
Hi cccnate,
Since there are more than 30 line items you will have comment out the lines above
Because authorize.net expects a maximum of 30 items
Thanks
You need to Have SSL on website to comply TLS 1.2 authorize.net recommends you to use SSL on your site
This plugin does not use hosted forms it sends data via Post to Authorize.net Servers
- This reply was modified 7 years, 1 month ago by syednazrulhassan.
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Change status after paymentOnce you receive order mail and you see payment is completed you ship the items once you ship items mark them complete
Hi Rebecca
I understood your problem now it seems i need to a setting to plugin to turn on and off the Line Item sendingFor meantime can you comment out following to remove line items code entirely, please
foreach ( WC()->cart->get_cart() as $cart_item ) { $item_name = substr( strip_tags($cart_item['data']->get_title() ) ,0,30) ; $item_quantity = $cart_item['quantity']; $item_price = $cart_item['data']->get_price(); $item_taxable = $cart_item['data']->is_taxable() == true ? 'Y':'N'; if($item_quantity > 0 && $item_price > 0 ){ $sale->addLineItem($i, $item_name, $item_name, $item_quantity, $item_price, $item_taxable); } $i++; }
- This reply was modified 7 years, 1 month ago by syednazrulhassan.
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Refund not working properlyThat absolute spon on now i would check how refund behaved in authorized only and update you.