Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Price filter issueHi Nick,
Right, so this is the intended behavior. The price filter if made to filter product prices, not cart subtotal prices (where taxes are technically included).
It queries products by their the price column in the database. Doing the necessary queries with taxes taken into account along with different tax classes would be very performance heavy.
If this is something you need, it will require some customization.
There must be a plugin conflict happening, or a theme conflict. The file
/plugins/woocommerce/includes/class-wc-product-gift-wrap.phpdoes not exist in WooCommerce core, yet it is looking in WC core for the file. The plugin trying to use said file is looking in the wrong place.Follow this guide to find the plugin or theme that is the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] New Customer Order Emails Suddenly NOT SendingRight, so I believe that is the problem here. If you enter in a gmail email address for example, I’m assuming it receives the emails?
There’s something not set up correctly in regards to your custom email server.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Rest API – 401 UnauthorizedYou have to authenticate to get responses from the WooCommerce REST API. Product data is not public.
See: http://woocommerce.github.io/woocommerce-rest-api-docs/#authentication
and: https://github.com/woocommerce/woocommerce/wiki/Getting-started-with-the-REST-API
Forum: Plugins
In reply to: [WooCommerce] Site Administrator Cannot See All Menu OptionsI believe they are disabled by default perhaps, so that could explain why 🙂
Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageI don’t think you need anything special for this, just need to utilize the default category pages.
1) Assign products to only categories they belong to.
2) Use / link to the default category pages. At Products > Categories you can click “view” underneath a category to see it’s page and get the link.Forum: Plugins
In reply to: [WooCommerce] WooCommerce shop front has 2 URLsTry using a redirect plugin, like https://wordpress.org/plugins/redirection/
Forum: Plugins
In reply to: [WooCommerce] Removing price and stock rich snippets from Google SearchUsing the filter I posted will be similar to the snippet you are using to remove all data. So something like this:
function wc_remove_some_structured_data( $markup ) { unset( $markup['offers'] ) return $markup; } add_filter( 'woocommerce_structured_data_product', 'wc_remove_some_structured_data' );Forum: Plugins
In reply to: [WooCommerce] Need help creating custom user login in woocommerceHere is a guide for adding custom account fields: https://iconicwp.com/blog/the-ultimate-guide-to-adding-custom-woocommerce-user-account-fields/
Forum: Plugins
In reply to: [WooCommerce] Woocommerce mails not receiving suddenlyThe order status of the new order must be “processing” or “completed” for emails to be sent out, they will not be sent for “pending payment” orders. So double check that.
If that does not help, then you’ll need create a staging/test site. On this staging site, disable everything but WooCommerce and have a default WordPress theme enabled. Then do a test order and see if emails are triggered to be sent at that point.
Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageRight, so your theme is overriding the template I mentioned, and it is not up to date (or rather the theme authors updated the version number but did not implement the changes that were made).
Need to have the template correctly updated to pass along the $args parameter: https://github.com/woocommerce/woocommerce/blob/master/templates/loop/add-to-cart.php#L33
Forum: Plugins
In reply to: [WooCommerce] Cannot declare class WC_Settings_Products ?Where is this error showing? I need more details, please take the screenshot requested. And I’m still not 100% sure you are disabling all other plugins and switching to a default theme.
Suppose you could re-install the WooCommerce plugin with a freshly downloaded copy as well to rule that out.
Forum: Plugins
In reply to: [WooCommerce] Whole site went downCould you test to see if this happens when only WooCommerce is active, along with a default WordPress theme? More info here: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Whole site went downAh nm, it shows up now: https://wordpress.org/support/topic/whole-site-went-down/
Closing this one.
Forum: Plugins
In reply to: [WooCommerce] Cannot declare class WC_Settings_Products ?Could you disable all plugins again except for WooCommerce, and temporarily switch to a default WordPress theme like twenty seventeen at the same time. Then if the error still occurs, take a screenshot of the error where it is occurring. I recommend https://snag.gy for easily sharing screenshots.