swicks
Forum Replies Created
-
Forum: Plugins
In reply to: [Kashflow for Woocommerce] Creating Invoices?By default if the product doesn’t exist in Kashflow the plugin creates one.
I’ve updated the development version –
development versionIt can now generate a log file for debugging and I’ve modified how it handles products.
Forum: Plugins
In reply to: [Kashflow for Woocommerce] Creating Invoices?Hi
The products in the order are they variable type or is the product sku disabled?Thanks
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] 3D Secure Handshake‘Other’/’Group’ should have read access – in the instance we had the issue is was only the owner having access.
Are you seeing the same symptoms running in Test?
What theme are you using and can you switch to a standard wordpress theme to test?The steps the plugin takes to display this page:-
- Validates the form
- Posts info to SagePay
- If 3D Secure is enabled – SagePay will return with a request
- The plugin then displays an iframe with 3DRedirect as the source – this in turn has an autoload to submit a post asking the issuing bank to display their authentication page (ACSURL)
If you can run the plugin in ‘test’ mode – we might be able to understand more from the debug email.
regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] 3D Secure HandshakeHi
The only issue I’m aware of was where the hosting company hadn’t set up permissions correctly on the plugins folder – you should be able to access the 3DCallBack.php file from a browser (it’s not designed to run through a browser, as it will keep trying to autoload ) to prove you have access – no 404 errors, etc.Setting up 3D Secure rules see this
http://devicesoftware.com/setup-3d-secure-rules-2/regards
Steve
Forum: Plugins
In reply to: [Kashflow for Woocommerce] Creating Invoices?Yes it does, once an order has been placed in woocommerce the customer details are created and then the sales order is generated.
I assume yours isn’t – Can you let me know versions and what payment gateway you are using?
Apologies for the late response, I didn’t see any notification messages for your post.
thanks
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Fatal error@monzu02 This WAS resolved 4 months ago – please read the thread before responding!!!
I was responding to a new post on an old thread.
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Fatal errorYou need to use WooCommerce version 1.4 or later.
Your error doesn’t relate to this payment gateway.
Best regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Credit Card Picture IconsWe have always used the SagePay icon, I’m not aware of any version that showed credit card icons instead.
I’ve seen other developers modifying the icon or point to another icon file – line 197 of ds-sagepay-direct.php
The card icons are available in the assets folder as well – WooCommerce only calls for one icon – you could merge the cards together the ones you use or modify the payement_fields function to show icons instead of a dropdown box.
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Fatal error:I would suggest you speak to SagePay support and explain that your vendor name works fine in test but fails in live – test and live are configured separately by the SagePay team (they are totally separate environments – so it is possible that live needs some additional changes).
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Fatal error:If you run SagePay Gateway in ‘test’ mode and turn debug on with a valid email address what information is emailed back to you?
It sounds like the information coming back from SagePay request is returning the error.
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Off Line ordersHi
I noticed this when I was adding the payment gateway and thought you probably didn’t want to have everyone as ‘guest’. Adding a new user should be straight forward, the issue it how to implement it into WooCommerce.Do you have a test site and an email, so I can send over what I’ve done so far? It still needs a far amount of work but should give you an idea.
regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Off Line ordersHi
I agree a payment pane after totals would make more sense. The way you create WordPress meta boxes, you are restricted with the positions – I can work on that, I have a few ideas on modifying the user meta for shop_order meta boxes.
No need to respond, this is more an update…
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Off Line ordersHi Guy
I’ve attached a link to a screenshot based on the way I perceive it to work. href=”http://devicesoftware.com/sagepay-direct-pro-for-woocommerce/. I’m not too keen on building it into the Order Totals panel if I can help it, would make it less flexible with WooCommerce upgrades etc.
NB This is currently a mock-up
regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Passing basket contentsOops – very good point – you need to get the variation SKU
Try replacing:-
$product = get_product( $item['product_id'] ); //returns an instance $sku = $product->get_sku(); //returns the skuWith:-
$product = get_product( $item['product_id'] ); //returns an instance // check whether this is a variable product - if so use it's variable id if( $product->product_type == 'variable' ) $product = get_product( $item['variation_id'] ); $sku = $product->get_sku(); //returns the skuI haven’t tried this, but it should work…
Regards
Steve
Forum: Plugins
In reply to: [WooCommerce SagePay Direct Payment Gateway] Direct Payment MethodsHi
Yes good point, they would need to be using protocol version 3