abwaita a11n
Forum Replies Created
-
Thanks for following up, @islamfathi.
Everything seems okay with the shipping settings you’ve shared.
If the product is not virtual, then the expectation would be that the shipping methods and rates would be displayed. I, however, do not see that shipping part when inspecting elements on your checkout page.
Thus, I recommend that you check whether the issue is coming from your theme or plugins first. Here’s the conflict test guide – https://docs.woocommerce.com/document/how-to-test-for-conflicts/.
Let us know how it goes.
Thanks.Forum: Plugins
In reply to: [WooCommerce] 404 error after customer makes a purchaseThanks for getting back @zetheons.
The error logs seem to indicate an issue with your child theme’s functions.php. You’ll want to check closely the referenced line or any custom code you have added, especially on the use of closing tags.
As regards the 404 error, I see that you’re using our WooCommerce Stripe Gateway. Our Stripe team will be happy to probe the issue further, so, we kindly request that you post it on this forum – https://wordpress.org/support/plugin/woocommerce-gateway-stripe/.
We’ll be happy to be of further assistance.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Not showing Out Of Stock products in category pagesHi @elramiro10,
As a first step, you’ll want to check whether you have any caching plugin on your site and then purge all cache from it. From there, clear your browser cache and then check if the affected products are still hidden on shop and category pages.
If the above does not show the out-of-stock products, it might be an indication that you have a conflict going on causing the setting to show out of products not to be respected. Thus, I would recommend doing a full conflict test to see if you have a theme or plugin causing the issue.
Let us know how it goes.
Thanks.Glad to hear that @3sonsdevelopment’s recommendations were helpful!
I’ll go ahead and mark the thread as resolved.
If you have other questions, please feel free to create a new thread.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] adding currency beside priceHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved.Just to mention, you could adapt your earlier solution further to show CAD price suffix on your cart and checkout pages by also targeting the following:
* woocommerce_cart_item_price * woocommerce_cart_item_subtotal * woocommerce_cart_subtotal * woocommerce_cart_totalSo, something like this should work:
add_filter( 'woocommerce_get_price_html', 'bbloomer_add_price_prefix', 99, 2 ); add_filter( 'woocommerce_cart_item_price', 'bbloomer_add_price_prefix' ); add_filter( 'woocommerce_cart_item_subtotal', 'bbloomer_add_price_prefix' ); add_filter( 'woocommerce_cart_subtotal', 'bbloomer_add_price_prefix' ); add_filter( 'woocommerce_cart_total', 'bbloomer_add_price_prefix' ); function bbloomer_add_price_prefix( $price, $product ){ $price = 'CAD' . $price; return $price; }Hopefully, all the above suggestions were helpful!
If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Free digital product checkoutHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above plugin suggestions were helpful!
If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] “WooCommerce database update done” generates error pageHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the workaround shared above was helpful and you were able to solve the issue.
If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Pallet Quantity, Weight and Size ShippingHi,
It seems we’ve not had additional inputs on the thread in a while, so I’m marking it as resolved. Hopefully, the above info by @wpniall was helpful.If you have further questions, please feel free to open a new topic.
Thanks.
Hi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above info was helpful and you were able to successfully update.
If you have further questions, please feel free to open a new topic.
Thanks.
Hi,
It seems we’ve not had any additional inputs on this thread for some time. Thus, I’m marking the thread as resolved. Hopefully, the above info was helpful and plugin suggestions were helpful.If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] About WooCommerce Plugin ConflictHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, you were able to find a solution to the issue and you’re able to post even while the WooCommerce plugin is active.If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Change the sortingHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above info was helpful.If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Single Product ThumbnailsHi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above plugin suggestion was helpful!If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Fatal error: Only variables can be passed by reference in..Thanks for the clarification.
Hopefully, @arberkastrioti will be able to get back to you.
Forum: Plugins
In reply to: [WooCommerce] How can I link stock level for a product with two prices?Thanks for getting back.
Looking the opposite way, am I correct in thinking that if I want to manage stock at variation level then I need to disable stock management at product level?
You can disable the stock management at the product level in such a case.
In cases where both variation level and product level stock are enabled, the variation-level stock is preferred and will get deducted to correspond with your sales while the product stock will be “ignored”.
Here’s a more detailed explanation – https://github.com/woocommerce/woocommerce/issues/14880#issuecomment-299709869
I hope this clarifies.
Thanks.