Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] requirement for creating woocommerce store mobile application@nasserman – why not have “fallback” or “guest” API credentials built into your app? You could limit it to be read-only for security purposes.
@ojaser6 – that error message is returned by the PayPal API. Invalid Credentials error messages virtually never yield false positives so it’s definitely worth contacting PayPal support to triple-check and test your API credentials.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.@timbamerchant you can double-check your shortcodes here just in case any of them are lingering.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Pedido Fallido@ebrubcn – It looks good to me. 🙂
I’ll close this thread.
Forum: Plugins
In reply to: [WooCommerce] Customer triggers Woocommerce order status@socialant – Sure, create a new thread in the future if you need further help; I’ll close this thread.
Forum: Plugins
In reply to: [WooCommerce] How Link to Woocommerce Product Page by idYou could technically link to the post ID using the “non-pretty” permalink structure.
Like so:
Where 123 is the post ID of the product.
Hope that helps!
Forum: Plugins
In reply to: [WooCommerce] Switch Between two Multiple Variable Subscription@amishk – this is forum support for the core WooCommerce plugin and not for external Subscriptions plugins.
If you are using Subscriptions(developed by Prospress), you can enable Subscription switching:
https://docs.woocommerce.com/document/subscriptions/switching-guide/#section-2
If you have a license for the premium Subscriptions plugin you can create a ticket with Prospress by going to WooCommerce.com > My Account > Tickets.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Pedido Fallido@ebrubcn – I don’t see any errors on the Checkout page. Have you only had one failed order or are all of your orders failing? Can you enable Debug Logging(WooCommerce->Settings->Payment->Stripe) and look at the logs for the error(WooCommerce->Status->Logs)?
@bukvaking – the Stripe plugin is certainly translatable, so, perhaps you need to double-check the path of your translation files. Loco Translate should place the translation files in the /languages/plugins/ folder.
Are none of your translations working, or are just some of the strings not translating? Which ones?
Second issue: The Checkout page needs to be encrypted(served over the HTTPS protocol). Install an SSL certificate and set your site’s URL to use HTTPS.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe + Subscription@cmb70 – I would first make sure that both Subscriptions and Stripe are fully updated.
Then, please create a ticket with WooCommerce support at WooCommerce.com > My Account > Tickets. We will be able to help you further there.
- This reply was modified 7 years, 10 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] File name too long@josiah-s-carberry – sounds like this could be caused by a minification plugin. Do you have something like Autoptimize or some other plugin which performs JavaScript minification?
@natanleon – Which payment methods icons are you referring to? The credit card icons? If you can let us know exactly what you wish to modify we can help further. 🙂
Forum: Plugins
In reply to: [WooCommerce] Paw it forward function@ontheball1 – I think adding a custom checkbox to each product with a ‘Donate this item to a local shelter’ is the easiest way to go. It will still handle inventory and you will be able to see when editing the order later which items were donated.
One user mentioned WC Fields Factory, another option is Product Add-Ons(official plugin). https://www.woocommerce.com/products/product-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Check/Tick Symbol on add to card button after adding sthHey @stefanb92 – which version of WooCommerce is the site running? I don’t see this behavior on my own updated site. It seems to be added via a
content:CSS rule using the following selector:button.single_add_to_cart_button::after{}
Forum: Plugins
In reply to: [WooCommerce] issues with page.php checkoutI think this has to do with previously closing your
ifstatement. It’s fully closed way above the else statement and thuselseis not expected to be in that spot.If the purpose of the
if/elsestatement is to check for a thumbnail and then display a different output, you’d need to put the closing bracket right before the else statement.If you didn’t develop this theme, contact the theme developers for more help.