Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] New order mail not being sentAnd other mails are working like expected (i.e invoice, reset password, products not in stock)
When I send it manually (from the back-end) it works as well.
If the emails are not automatically triggered but are received when you manually send them, it could indicate a plugin/theme customization conflict. You might have a piece of code hooked improperly into a WooCommerce order status change action which prevents the rest of the code hooked into that action from firing.
Forum: Plugins
In reply to: [WooCommerce] paypal standard problems@gusray – I don’t see any issues in the logs you’ve provided; at any rate, they’re just the request logs sent to PayPal and don’t include the response. If a response isn’t logged it’s because the error is happening on the PayPal side and nothing is sent back to the store. Hopefully, PayPal can review logs from their side to see what the real error here is, but as Melinda mentioned, it’s usually an issue with your PayPal merchant account.
As @mtruitt mentioned it’s always a good idea to test this with a default theme and with just WooCommerce enabled.
Forum: Plugins
In reply to: [WooCommerce] Run Products Update Always appearAnything in the
wc_db_updateslog file? You can find it by going to WooCommerce->Status->Logs.Forum: Plugins
In reply to: [WooCommerce] HTTP ERROR 500 after checking completed order500 errors are caused by PHP Fatal Errors, which are obfuscated by WordPress. Search through your server’s error logs to find the exact error and script location; it is often caused by a customization or plugin which is referencing a deprecated class/function.
Forum: Plugins
In reply to: [WooCommerce] Remove breadcrumbs@miezz81 – if removing the action doesn’t work for your theme, you might want to search through your theme’s code to determine how it actually adds the breadcrumbs.
You could also use a CSS
display:none;declaration which should remove the space normally used.Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Problem with payment@nicowebmaster – can you try a test payment with a default theme(Twenty Seventeen) and just WooCommerce and the Stripe plugin enabled?
Do you have Stripe Modal Checkout enabled within the Stripe plugin settings page?
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Changing button location@osherezra3363 – this is not done with a filter but rather by using remove_action.
This tutorial goes over the idea:
https://wpbackoffice.com/reorder-product-page-contents-woocommerce/
I’m not sure that you can easily render the button right next to the ‘Add to Cart’ button, it certainly wouldn’t be as simple as a CSS rule to make it
float:right;. The reason is because the ‘Add to Cart’ button is part of a<form>element.Hope that helps!
@komatias – I just tested this using the most recent version of the plugin and this works fine – I can select PayPal Express Checkout as the checkout method after clicking the ‘Pay for Order’ link within the invoice email. I am then redirected to PayPal, wherein I can finalize the transaction:
I would first make sure the plugin is totally updated, then check for any caching issues that could be causing a problem. You’ll want to check that your /Cart and /Checkout pages are exempt from caching.
http://docs.woocommerce.com/document/configuring-caching-plugins/
@benbogart – please update the plugin, a fix was just released for this:
= 1.5.6 – 2018-06-06 =
* Fix – Virtual products cause issues with billing details validation.Forum: Plugins
In reply to: [WooCommerce] Showing Card type in Admin New Order emailI had a quick look through their code(if you’re using the plugin developed by SkyVerge) and it has the following:
$order->payment->card_type = SV_WC_Payment_Gateway_Helper::card_type_from_account_number( $order->payment->account_number );Maybe that will help you, although, it might be best to contact the gateway developer as WooCommerce doesn’t look like it can do this itself.
Forum: Themes and Templates
In reply to: [Storefront] No shop on site@clonesoft – Just to clarify, I’m talking about the page itself and whether or not it is published or in Draft status:
If the page was published but showing all white, I would check for fatal errors. You can go to WooCommerce->Status->Logs and select the fatalerrors log from the dropdown menu. Paste in what you see here(or upload it to something like pastebin and share the link).
@trevellyan – After rebooting the server, are you seeing that the error goes away? It’s hard to say, all hosts tend to run their services a bit differently, and some hosts(particularly shared hosts) tend to restrict PHP Modules in order to err on the safer side.
Forum: Plugins
In reply to: [WooCommerce] Your store does not appear to be using a secure connection….@mrspumpkin – Right, sorry if that was unclear; the message comes from either WooCommerce or a WooCommerce extension(Stripe was an example mentioned earlier).
As far as WooCommerce itself is concerned, it checks to see if either the Shop page is loaded via HTTPS or the native is_ssl() function returns true.
For future people looking at this thread, the spurious message could be caused by hosts utilizing load balancing:
Forum: Plugins
In reply to: [WooCommerce] Issue with HTTPSForum: Plugins
In reply to: [WooCommerce] Issue with HTTPSThis is just a warning and shouldn’t impact the functionality of your site.
“This problem also blocks Paypal-payments, as customers gets an error.” What error are you receiving exactly? I didn’t see any errors on the site when redirecting to PayPal.
Can you paste in your System Status Report here?