Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Too many files in Woocommerce storeHey Alan,
It varies significantly based on what plugins are used, how many images, etc. So I’m afraid there isn’t really an average to go by.
I do know that most web hosts have a storage limit but not a file amount limit. I’m gonna imagine your site isn’t really exceeding much of a storage limit but rather the artificial file amount limit. So you should be good elsewhere without such a limitation.
That said, 262,144 files is a pretty hefty amount. And unless you have loads of images or some folders storing things outside of your WordPress root, there is likely a plugin or a couple that have extreme amounts of files so could check on that 🙂
Forum: Plugins
In reply to: [WooCommerce] Deprecated: get_price_including_taxAh yea, nice catch. Didn’t scroll through the full error 🙂
The
woocommerce-viabill-pricetagsplugin is definitely the one causing multiple errors. Should contact those plugin authors if their isn’t an available update.Forum: Plugins
In reply to: [WooCommerce] woocommerce 3.3 and wpbakerey page builder 5.4.7Those plugins could be at fault. But did you try deactivating every plugin except for WooCommerce? And at that point did the problem occur? Next did you active only WPBakery along with WooCommerce? Did the problem occur at that point?
Forum: Plugins
In reply to: [WooCommerce] Link customer account to previous orders ? Automatically ?but it can be done only manually, and it is so slow that it is boring to use
Right, that is what I was saying above. This process is heavy on the database, can take a while and is not a performant query. Thus doing it every time an account is created is a bad idea.
By niche, I mean how often are people buying multiple orders on a site, then one day decide to make an account, and are upset their past orders aren’t there? Seems pretty odd – maybe the callout to make an account before checking out should be more prominent on your site if it happens a lot.
That likely means the variations are still actively attached to a product. This probably happens when you duplicated variable products then turned them simple without deleting variations. I’d recommend recreating your simple products from scratch rather than duplicating a variable product.
Forum: Plugins
In reply to: [WooCommerce] Contact form 7 shortcode in woocommerce category descriptionBy default, shortcodes are parsed in the category description. Thus something on your site is likely causing a conflict. You need to find if it’s your theme or another plugin following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Would also recommend testing with another shortcode just to make sure it’s not the contact form only. Perhaps try
[products limit=2]for testing.Forum: Plugins
In reply to: [WooCommerce] Woocommerce “noindex” on HomepageWordPress > Settings > Reading > Search Engine Visibility is likely set to hide your site?
An SEO plugin like Yoast SEO would warn you about this: https://wordpress.org/plugins/wordpress-seo/
Forum: Plugins
In reply to: [WooCommerce] Custom Post “Add to cart” Buttons editingAre you saying that it should be as simple as adding a parameter to my shortcode like button_text=”Buy now” or something like that?
It could be like that, but to get to that point will require custom development. So you will probably need to hire a developer to implement one of the above two options for you:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/_____
Alternatively, what about using a variable product? https://docs.woocommerce.com/document/variable-product/. Could just have a dropdown to select once of the book options.
Forum: Plugins
In reply to: [WooCommerce] Show the variable image on my store pageAh, gotcha.
So on archives it’s not selecting variations – just filtering by attributes. Variations can be made up of multiple attributes – filtering by just one wouldn’t necessarily select a variation.
So no, there’s not a way to do this by default I’m afraid. Perhaps something like this could work: https://iconicwp.com/products/woocommerce-show-single-variations/, though I have not tried it and can’t vouch for it directly.
Forum: Plugins
In reply to: [WooCommerce] Orders PageCould you take a screenshot of this error you are seeing when viewing the order? (pending there is no sensitive information).
I recommend https://snag.gy for easily sharing screenshots – please follow the instructions on the page, then paste the URL here. It works with Chrome, Firefox and IE.
Forum: Plugins
In reply to: [WooCommerce] How to add a Clear Cart Button on Cart TotalsFair enough. Could certainly argue the counter side – if the customers wants to quick purchase something, then a full cart could deter them. Valid points to both sides 🙂
Forum: Plugins
In reply to: [WooCommerce] Thumbnails in productpages are messed upThere’s not I’m afraid. Your theme needs to declare the image sizes it needs so they are generated, else it needs to call valid image sizes to use in it’s templates.
You’ll need to contact the theme authors about this as the fix will need to come from them.
Forum: Plugins
In reply to: [WooCommerce] get_shipping_methods() return empty rate ararySo it seems likely to me the interactions with
WC()->shipping->get_shipping_methods()are problematic because of the WPDesk_Flexible_Shipping plugin. As neither Mikey nor I could replicate the problems you’re describing.For what you need, I’d recommend just picking apart this template perhaps: https://github.com/woocommerce/woocommerce/blob/master/templates/cart/cart-totals.php
But yea, if you can test your customizations without the WPDesk_Flexible_Shipping by temporarily adding core flat rate/free shipping and still replicate this problem, then there might be a bug. But seems far more likely that plugin is the cause of this.
Forum: Plugins
In reply to: [WooCommerce] ‘Loading Spinner’ is broken (not animating)Hmm, so I’m able to replicate this using the same theme – so it does seem there is a bug here.
I’ve opened up an issue here: https://github.com/woocommerce/woocommerce/issues/19479
Forum: Plugins
In reply to: [WooCommerce] Reports Not Working – Older OrdersThanks for the advice but do you know if there is a way we can get the default reporting working?
Hard to know without diving in to figure out what is going wrong. Have you dont any data imports/exports/migrations in the past?
With the Query Monitor plugin, you can see what queries are running on a specific reports page: https://wordpress.org/plugins/query-monitor/. Then can try the same SQL query against a staging/test version of your database to see if it returns orders from the missing timespan or not. That is where I would start at least.