Luminus Alabi
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Creating a charity option – save choicesHi @noclip27,
You can use the WooCommerce Checkout Add-Ons extension to add these fields to the checkout page.
The data will form part of the order once the order is submitted, so you can use that to accurately remember which charity each customer wanted money to go to.
Cheers
Forum: Plugins
In reply to: [WooCommerce] Adding custom field to REST taxonomyHi @ildaniel8,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce] Failed and Canceled orders Email send to CustomerHi @serkankurnaz,
The alternative is to write your own custom code that does what you need.
I found this on StackOverflow and it looks like it might be what you’re looking for – https://stackoverflow.com/a/53715970
Forum: Plugins
In reply to: [WooCommerce] Failed and Canceled orders Email send to CustomerHi @serkankurnaz,
Notifications fr failed and cancelled orders are only sent to the Admin, so you’ll need to use a plugin to take care of sending these notifications to the customer as well.
You’re spot on with wanting to use AutomateWoo.
Forum: Plugins
In reply to: [WooCommerce] Adding a simple button to Woocommerce order preview modalHi @paulbaraka2001,
This is a fairly complex development topic. I’m going to leave it open for a bit to see if anyone is able to chime in to help you out.
I can also recommend the following places for more development-oriented questions:
- WooCommerce Slack Community: https://woocommerce.com/community-slack/
- Advanced WooCommerce group on Facebook: https://www.facebook.com/groups/advanced.woocommerce/
Forum: Plugins
In reply to: [WooCommerce] Managing multiple ecommerce sites from 1 websiteHi @dllive,
Each WooCommerce site is self-contained having its own users, categories, products, inventory, shipping and payment methods, etc.
As such it isn’t possible to have a “mother” site as you’ve called it that manages stock and all other settings while displaying products on different sites based on the category they belong to, at least not ut of the box.
You could potentially get a developer to help you build something like this, but it would take a considerable amount of work since you’re essentially trying to force the software to behave in a way that it was not intended to.
If you don’t have a go-to developer, we highly recommend contacting one of the services on our customizations page: https://woocommerce.com/customizations/.
Cheers
Forum: Plugins
In reply to: [WooCommerce] LEFT OVER STUFF IN DATABASEHi @eldredge,
Uninstalling the WooCommerce plugin does not remove all the related data since people can accidentally deactivate the plugin or deactivate it intentionally when trying to test things to find out if there is a conflict.
If you want to remove the plugin and all its associated data, you can do so by following the instructions here – https://docs.woocommerce.com/document/installing-uninstalling-woocommerce/#section-4
I’ll go ahead and mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Store Credit Plugin for Employee Meal PurchaseHi @lifetechie123,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce] Hiding AttributesHi @towaiji,
I’d recommend directing that question to the developer of the plugin that you’re using to hide the swatches.
Forum: Plugins
In reply to: [WooCommerce] Refund, Cancled Orders do not RestockYou’re welcome @jet256,
I’ll mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.
Forum: Plugins
In reply to: [WooCommerce] “Standard” tax rates by CountryHi @wrise,
You’ll want to make sure that you’ve configured your tax rates per the instructions provided here – https://docs.woocommerce.com/document/setting-up-taxes-in-woocommerce/#section-12
Please send over a screenshot of your Tax settings so I can take a quick look and make sure that you’re doing this right.
I recommend https://snipboard.io for easily sharing screenshots – please follow the instructions on the page, then paste the URL in your response here. It works with Chrome, Firefox and Edge.
Forum: Plugins
In reply to: [WooCommerce] REST API – create new customer and set languageHi @albans,
There’s no locale property for WooCommerce customers by default as you set the locale for the entire site.
If you’re using a plugin to make your site multi-lingual, then you’ll need to look to that plugin for guidance as to how to handle locale settings.
Forum: Plugins
In reply to: [WooCommerce] Checkout page Rest APIHi @ketantecocraft,
As Con mentioned, the forms on the checkout page are templates and you can not call templates from an API, you can only query database values or update those values.
You need to build your own components to display a checkout form with bulling and shipping addresses in your application and then manage the API calls to the payment gateway.
The relevant API documentation for payment gateways can be found here – https://woocommerce.github.io/woocommerce-rest-api-docs/#payment-gateways
I’ll go ahead and mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.
Forum: Plugins
In reply to: [WooCommerce] Clear out the SKU field data via phpmyadminHi @robmcp,
This SQL query will set the SKU for all products that have an SKU to a blank string.
update wp_postmeta set meta_value = '' where meta_key = '_sku'If you re-run your select statement, it will return the same 400+ records but there will be no value assigned to the SKUs.
If you want to nuke the
meta_keysas well, you can use this version of the queryupdate wp_postmeta set meta_value = '', meta_key = '' where meta_key = '_sku'Re-running your select statement after this will return 0 records.
I’ll go ahead and mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.
Hi @marikane,
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.