swicks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] American Express Paymenthmmm, validation on the cv2 doesn’t count digits – so your user would be able to enter 4 digits – if the issue is the fact that the label is incorrect then you can modify it to say 4 numbers.
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] American Express PaymentAre they getting any error messages back from SagePay?
Hello,
I would suggest you contact SagePay, this payment gateway is designed to use with WooCommerce. Direct is really designed for full software integration into an ecommerce package. SagePay may suggest their ‘Form’ or a similar product that will allow you to create a simple link.
Sorry I can’t be more help, but this doesn’t sound like what you need unless you put dev time into WooCommerce.
Best regards
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] 3D Secure – No OptionTicket Closed
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Deferred is spelt wrongTicket Closed
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Simulator or TestTicket Closed
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Vendor Name IssuesTicket closed
Hi
I would just confirm that the vendor name is still correct in Woocommerce settings, if it is then I would contact SagepayRegards
Steve
Forum: Plugins
In reply to: [Kashflow for Woocommerce] installation issueHi,
Yes the development version is good to use. I will make it current very soon.
Regards,
Steve
Great, thanks for letting me know.
Regards
Steve
Forum: Plugins
In reply to: [Kashflow for Woocommerce] installation issueHi What version of woocommerce are you running?
Have you got a valid ‘simulator’ account setup? Normally you would have that before a ‘test’ account. Can you log into the simulator page with your vendor name?
Hi
If you run in ‘simulator’ mode without setting any IP Addresses it should return with the same error but showing you what the your actual IP Address is. Check that against what you have placed in the approved IP Addresses on Test Sagepay.Regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Vendor TX CodeThank you – very much appreciated.
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Vendor TX CodeTry this:-
keep line 592 as it previously was:
$this->add_param('VendorTxCode', $this->create_vendor_tx_code());change the function to this on line 1094
:/** * generate a unique vendorTxCode */ private function create_vendor_tx_code() { global $woocommerce; if ( version_compare( $woocommerce->version, '2.0.20', '>' ) ) $order_num = isset( $this->order->order_number ) ? $this->order->order_number : ''; else $order_num = isset( $this->order->order_custom_fields[ '_order_number' ][0] ) ? $this->order->order_custom_fields[ '_order_number'][0] : ''; $order_num = empty( $order_num ) ? mt_rand( 0, 32000 ): $order_num; $time_stamp = date("ymdHis"); return $this->vendor_name . "-" . $time_stamp . "-" . $order_num; } // end create_vendor_tx_codethanks
Steve