Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Please revert to previous product display options!Flexible widths and static heights for catalog images break layouts and aren’t very common. Not saying you shouldn’t be able to do it, just that it’s not something many stores need.
Can use filters and custom code to change this behavior: https://docs.woocommerce.com/document/image-sizes-theme-developers/#section-3
Forum: Plugins
In reply to: [WooCommerce] How do I make new meta_key similar to _price?Yes, height comes from the shipping input. This field is available on variations as well, and you can override the parent height in a variation.
Filtering with this data in a custom slider is going to take custom code though.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce products have Blank Thumbnails in WP Media LibraryGoing to mark this as solved, since what is happening is expected behavior https://wordpress.org/support/topic/woocommerce-products-have-blank-thumbnails-in-wp-media-library/#post-10074408
Forum: Plugins
In reply to: [WooCommerce] images won’t display after Woo 3.3.3 updateGotta be something in the child theme, else the parent theme is doing some things that aren’t properly set up to work with a child theme which is technically possible.
Forum: Plugins
In reply to: [WooCommerce] 404 When Updating ProductsTry re-saving permalinks at Settings > Permalinks.
I see you tried deactivating plugins, but need to rule out all at once. So try deactivating all plugins except for WooCommerce, switch to a default WP theme at the same time. Then re-save permalinks and test again.
https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Charge Vendors for posting productsI don’t know of a plugin that does this out of the box, it’s quite a specific scenario. Likely going to need to hire a team / a developer for this:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Webhook do not resendThat sounds correct for the default behavior, yes. https://github.com/woocommerce/woocommerce/issues/15620#issuecomment-308694985
In 3.3 you can set up custom queues for webhooks though: https://woocommerce.wordpress.com/2017/12/08/wc-3-3-new-webhooks-crud/
Forum: Plugins
In reply to: [WooCommerce] caching issue when switching to user’s accountRight, this has to do with browser cookies, sessions, and the persistent user cart cache.
Doubtful there is much to do here without interrupting other behaviors (like how carts are restored when a user logs into their account).
My recommendation would be to continually open up an incognito browser window before switching accounts, then close it and open up another before switching to the next user.
Or, find a way to avoid needing to user switch via adding more admin controls for whatever it is you are doing.
Forum: Plugins
In reply to: [WooCommerce] Jquery error on checkout and my account pageYour theme or another plugin is causing this. Follow this guide to find out what the conflict is coming from: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Changing sorting for specific category onlyHere’s where sorting is done/output: https://github.com/woocommerce/woocommerce/blob/c38e0e69e9c72935f1c2507d629368d67e4154f9/includes/wc-template-functions.php#L981-L1021
So should be able to use some hooks within there.
PayPal standard should work with Subscriptions. Though I will say it’s not a “great” solution for subscriptions due to it’s limitations, many seen on that page. This gateway would be much more recommended: https://wordpress.org/plugins/woocommerce-gateway-paypal-powered-by-braintree/
That said, I’m afraid we can’t support problems occurring with premium extensions like Subscriptions in these forums per the forum rules. You can open up a ticket if you’ve purchase this from WooCommerce.com here: https://woocommerce.com/my-account/marketplace-ticket-form/
Forum: Plugins
In reply to: [WooCommerce] Tax Rounding IssueHere are some constants you can set to alter rounding calculation: https://github.com/woocommerce/woocommerce/blob/master/includes/class-woocommerce.php#L207-L209. They’d be defined earlier in your wp-config file to change I believe.
Can see here, that WC will mostly use whichever is higher: https://github.com/woocommerce/woocommerce/blob/64bcabf0af9a05274d53ec833a4e8c9153509bc4/includes/wc-core-functions.php#L1549-L1553. Either
WC_ROUNDING_PRECISIONconstant, or the number of decimals you have set plus 2.Forum: Plugins
In reply to: [WooCommerce] Import products attributes issuesI did bunches of tests around this.
If you export all products, change the “Attribute visible” column to 0 on the Variable product (not variation), then import all products with “merge existing” enabled, then this works as expected and just the visibility setting it changes.
However, I did come across a bug described here: https://github.com/woocommerce/woocommerce/issues/19398
Declaring conflicts is something that should ideally be done in the plugin, no need to build that part in WC core.
There isn’t really a channel we can reach all plugin developers, since anybody can release a plugin. I think it will over time increase as plugin authors get pinged by users about their plugin showing up as incompatible/untested. But unfortunately not much more that could be done.