Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Grouped Products IssueI hidden product is meant to not be linked to anywhere, this was fairly widely requested for Grouped Products to not link back to them. As it works that way everywhere else, like in the cart.
Will require customization to change this.
This template in particular: https://github.com/woocommerce/woocommerce/blob/44c1de45eb56f578cc83744890b1e8f290dfa85e/templates/single-product/add-to-cart/grouped.php#L73
Else could also conditionally filter the is_visible() function: https://github.com/woocommerce/woocommerce/blob/197e16269d83bb82bbcc1b6d6d00edba6e1c4401/includes/abstracts/abstract-wc-product.php#L1449
I replied in your trac ticket, but yea, issues should be reported to the Github repo for WooCommerce, no WP trac 🙂
For this in particular, you can use the
woocommerce_product_categories_widget_argsfilter to substitute out the walker class: https://github.com/woocommerce/woocommerce/blob/200f2371fd1cec3577d4f2ba96ad24c637056420/includes/widgets/class-wc-widget-product-categories.php#L265Then just make your own class the extends
WC_Product_Cat_List_Walkerand does what you need it to do in thestart_el()method.Forum: Plugins
In reply to: [WooCommerce] Products display on homepage[products limit="8" category="tshirts"]would be the better shortcode to use. More info here: https://docs.woocommerce.com/document/woocommerce-shortcodes/#section-6Decimals in the quantity isn’t support by default, thus the need for filters. I don’t know of the top of my head what exactly, but it’s very likely there are other customizations that need to be made.
Can’t really support customizations like this though I’m afraid, as they possibilities would be endless and it’s be impossible to offer custom developments for everybody.
If you find the need for a new filter or hook, then we can look into that. But will need more details about what is needed and where.
Forum: Plugins
In reply to: [WooCommerce] Product Category Titles and Descriptions Not ShowingYour theme or another plugin must be causing this (likely the theme). Find the culprit following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Variable Products Seem BrokenNot sure I follow what you need exactly.
If you need attributes that don’t affect the price, you can just create one variation and use the “any” option like this: http://cld.wthms.co/dQjWIa
Alternatively, if they should only choose one gauge option, why not have one attribute called “Gauge” with the 12, 20, 28, etc as options?
And then if you need selections to be made where attributes aren’t a good fit, you could use something like Product Add-Ons: https://www.woocommerce.com/products/product-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Remove SidebarSo I’m not 100% sure what needs to be done, but WC does come with a sidebar template.
And removing this hook should prevent it from being used: https://github.com/woocommerce/woocommerce/blob/1bb88d0a50c9c3a0426c2be1145f9019089915bf/includes/wc-template-hooks.php#L54
Otherwise, if not that, your theme might be called sidebar in it somewhere.
Forum: Plugins
In reply to: [WooCommerce] Multiple ChoicePurchasing it from somebody shadily trying to re-sell it is both a security risk and fairly unethical. If the plugin helps your business, why not pay the people who spent time and money to develop it and continue to maintain it?
If everybody did as you did, the plugin would not exist and you would be in a much worse position needing to hire somebody to build it.
Forum: Plugins
In reply to: [WooCommerce] unsubscribeWhat are the contents of the messages? Is it from replies to forum threads you started? You can unsubscribe from forum threads on the sidebar of the thread.
Can also see what you are subscribed to here: https://wordpress.org/support/users/x96816/subscriptions/
Forum: Plugins
In reply to: [WooCommerce] Remove SidebarSo, WordPress has a built-in sidebar that is it retiring: https://github.com/WordPress/WordPress/blob/80158fee6c1d55cbb5e7ce092dedf987d6befa27/wp-includes/theme-compat/sidebar.php#L10
It think the message will only show if the sidebar is being requested to load, which WooCommerce might be doing. Especially if you have widgets on the sidebar.
A blank sidebar.php template in the theme should be enough to suppress the problem, or if you are using said template (even if it’s technically at the bottom and not at the site), you’ll need to populate the template with code accordingly.
Forum: Plugins
In reply to: [WooCommerce] Tax on variable productsSo to confirm, if a variation has an entered cost of $100, it is showing as $75 on the product page?
I’m struggling to replicate this, so the best thing to do would be to narrow down what’s needed to replicate / rule out possible conflicts. This guide will help: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Thumbnails in productpages are messed upHey Dorothy,
After making changes in the customizer, WooCommerce will start regenerating thumbnail slowly over time to not overload the server. But you can get them all done at once using https://wordpress.org/plugins/regenerate-thumbnails/
If the thumbnails still don’t show up right after regenerating, you you have cleared all caches, then it is likely your theme is doing something to cause problems.
Forum: Plugins
In reply to: [WooCommerce] Manually Adding Shipping Cost to Orders+1 on extra steps like this causing shoppers to turn away. Shipping costs is already the leading cause of an abandoned cart, telling them shipping will be added on later probably makes that worse.
At a minimum, at least try to show your flat rates when possible, and only start the complex process for larger orders. An extension like Conditional Shipping and Payments can help conditionally show/hide your flat rate shipping methods based on what is in the cart: https://www.woocommerce.com/products/woocommerce-conditional-shipping-and-payments/
Forum: Plugins
In reply to: [WooCommerce] Log in/Register form Woo CommerceThis is what I see when requesting a password reset:
Before: http://cld.wthms.co/gV5lLC
After: http://cld.wthms.co/m9itXySo your theme or another plugin must be hiding these messages.
Secondly, wouldn’t this information ( size, waist, etc) be better at the product level? Checkout is for billing/shipping info, not product requirements.
You can use attributes to collect more info, or something like Product Add-Ons perhaps: https://www.woocommerce.com/products/product-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Paypal page is not showingI’ve seen this issue happen mostly because of the request being sent to PayPal. Does your cart contain products that have a cost? And is your PayPal Business account verified and set up correctly?