Will Brubaker
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Can’t delete attribute.Howdy ??
Typically issues like this may be caused by either a conflict with your theme or with another plugin. How we usually address this type of issue is to have you temporarily switch back to a default WordPress theme such as WordPress Twenty Seventeen Theme (https://www.ads-software.com/themes/twentyseventeen/) or Storefront (https://www.ads-software.com/themes/storefront/) and disable all plugins except for WooCommerce. If that resolves the issue, then re-enable features one-by-one until you find the one that’s causing the conflict.
If that doesn’t help, can you post your system status report here please?
Forum: Plugins
In reply to: [WooCommerce] ERR_EMPTY_RESPONSEHola,
?Puedes publicar el informe de estado del sistema aquí porfa?
Forum: Plugins
In reply to: [WooCommerce] Salestax limited to a StateHowdy Stefen,
This is what is causing this:
You will want to set that to be based on the shipping address.
Forum: Plugins
In reply to: [WooCommerce] Exclude Tax amount from total amout@aquaspade can you please start a new topic for the 2nd problem with stock management.
So far as the taxes go, the suggestion given by Amanda up there results in something like this in my testing:
If we use that as an example, are you saying that you would like to see the subtotal line say ‘$19.80’ because that is the total with tax?
Forum: Plugins
In reply to: [WooCommerce] New states show up as codes in e-mailscan I use a function that uses the below logic and prints the state name anywhere in the site
No, you couldn’t just print that anywhere on the site as you would need access to the
$order
object.This code produces this result:
At checkout:
Thank you page:
Order email:
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product Search Results only showing 1 columnHowdy Kristin,
Here is the search template that is used by Storefront: https://github.com/woocommerce/storefront/blob/master/search.php – and from there, various other template parts are loaded to eventually generate the full output.
To change the way that items are output in the search results will require that custom templates be created. I would strongly suggest creating a child theme rather than directly editing or changing the templates provided by Storefront.
If you’re not comfortable tackling this kind of custom development yourself, you may want to contact someone from this page: https://woocommerce.com/customizations/
Forum: Plugins
In reply to: [WooCommerce] Add to cart button check markThe checkmark doesn’t seem to go away after a few seconds as I am able to see it:
Forum: Plugins
In reply to: [WooCommerce] Header Image for Product-Tag pagesYou may want to reach out to the theme developer for assistance.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce product page – tabs instead of short descriptionThe code works, it just needs to be wrapped in a callback function hooked into
woocommerce_loaded
e.g.:add_action( 'woocommerce_loaded', 'move_elements' ); function move_elements() { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 ); }
I don’t know what was added in the last or second to last update
Here are the changes: https://github.com/woocommerce/woocommerce/commit/2f8f30cd29ceea5a291f41eed3925a4629bb24c4#diff-196233fcc5c2e94e61150768cae11ff4
The terms and conditions text does NOT appear, so I cannot translate.
As you can see in the changeset, the same changes were applied to that as the one that you are able to see.
Forum: Plugins
In reply to: [WooCommerce] Run Products Update Always appearIn all likelihood, there is some plugin (or possibly your theme) that is preventing the database update from completing, possibly due to a PHP fatal error.
I would recommend switching to a default theme such as Twenty Seventeen or
Storefront (https://www.ads-software.com/themes/storefront/) and then disable ALL plugins except for WooCommerce and then run the database update again.Forum: Plugins
In reply to: [WooCommerce] Get value and old value on update productI found this that seems similar https://www.mootpoint.org/blog/woocommerce-hook-product-updated-added/
Hope that helps.
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Changing button locationSince you seem to be familiar with the chrome dev tools, can you see the changes that you have made to the theme CSS in the inspector?
Have you tried to use the customizer to insert your custom CSS rather than the theme’s CSS file?
Forum: Plugins
In reply to: [WooCommerce] editing BACS field via iPhone or iPadNo, I am unable to edit those fields and have opened an issue for this here: https://github.com/woocommerce/woocommerce/issues/18287 – also, related is this https://github.com/woocommerce/woocommerce/issues/17761
Forum: Plugins
In reply to: [WooCommerce] Email notification for new order not being sentIn WooCommerce, are there different settings between sending the initial new order notification and the resend?
No.
e.g. if it works for the Resend, should it not work for the initial order as well?
That is a reasonable expectation, yes, however, there would be different pieces of software interacting with the process in the two different cases. One thing is that theme files wouldn’t be loaded when re-sending the email from the admin as opposed to going through the checkout process. I’m not familiar with what the exclamation points might mean in the email logger, but I would suspect that a PHP fatal error has occurred when trying to send the email. I would suggest that you have a look at the PHP error logs for clues as to what might be causing that.
You can also do conflict troubleshooting. You can do that by temporarily switching to a default WordPress theme such as WordPress Twenty Seventeen Theme (https://www.ads-software.com/themes/twentyseventeen/) or Storefront (https://www.ads-software.com/themes/storefront/) and disable all plugins except for WooCommerce. If that resolves the issue, then re-enable features one-by-one until you find the one that’s causing the conflict.