Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Sale products page category filterRight, with the above you could still filter by category. Then the orderby would put on sale products at the top.
To automatically apply this orderby though, aside from having “on sale” as the default, will take a little customization I believe.
Might need to hire a developer to get this to be a perfectly fluid process:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/?project-scope%5B0%5D=1819_____
Alternatively, you can create shortcodes that both show on sale products and products of a specific category. So if it’s feasible, you could set up a couple of pages and link to them instead.
Forum: Plugins
In reply to: [WooCommerce] WC PAGESDoes the account page have a parent page applied to it?
Find the page that you have assigned as the My Account page, and make sure it doesn’t have a parent.
Forum: Plugins
In reply to: [WooCommerce] How do I make new meta_key similar to _price?Product’s already have a length meta
_length. I don’t understand what you mean by “The _price meta key can work with more than one value.” though.You can already filter by the length meta, or you could use an attribute for length and use the taxonomy/term for filtering as well.
Forum: Plugins
In reply to: [WooCommerce] Problem whit product variable and custom themeThis error is likely the culprit: http://cld.wthms.co/nTEpya
See https://docs.woocommerce.com/document/jquery-cookie-fails-to-load/ for more details.
Forum: Plugins
In reply to: [WooCommerce] BACS – Import .V11 files from my bankMmmm, I’m not familiar with this process I’m afraid. Likely going to need a custom integration built out, as this sounds very specific.
Forum: Plugins
In reply to: [WooCommerce] Need help on woocommerce activation fatal errorUsing the latest version of WordPress ?
This interface is apart of PHP core in 5.4+: http://php.net/manual/en/class.jsonserializable.php
But WP 4.4+ has a compatibility wrapper: https://github.com/WordPress/WordPress/blob/aaf99e691391cfceb004d848450dbbf3344b1bee/wp-includes/compat.php#L425-L439
Easy and best solution is to update PHP though. 5.3 is incredibly old, now unsupported and insecure, and you are missing out on extreme speed improvements by not being on 7.0+ π
Forum: Plugins
In reply to: [WooCommerce] Disable product delivery on certain dateBy default, delivery dates aren’t selected in WooCommerce core. Must be using another plugin or a customization for this?
This means your theme does not declare WC support, so WooCommerce is using the theme’s templates.
https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes
Forum: Plugins
In reply to: [WooCommerce] Single Product Images Won’t ResizeAfter making image size changes in the customizer, it can take a little while for images to regenerate the thumbnail sizes. You can get this quickly done with https://wordpress.org/plugins/regenerate-thumbnails/
Your images are larger than they are displaying on the product page though, so it could also be a matter of your theme’s styling.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce products have Blank Thumbnails in WP Media LibraryJust checked with our developers.
The WC uploads directory is protected so files wonβt be readable/viewable in media library. The folder has htaccess rules to block direct access.
So it is expected behavior with downloads.
Forum: Plugins
In reply to: [WooCommerce] PyaPal Standard problem after WooCommerce 3.3.3 updateAh yep, that’s the place. Good eye.
Let me know what happens when removing the limit and checking out with 10+ line items.
It could be some abstract rule in the developer docs, or worse, undocumented xD
Forum: Plugins
In reply to: [WooCommerce] Product Description field wrong position – need helpI’m afraid this is something your theme entirely controls. They are either overriding core WC templates, or using hooks to move stuff around.
If the theme developers aren’t being helpful and aren’t willing to make this work sensibly, then I would recommend looking for a new theme to be honest.
The alternative is hiring a developer to create a child theme with the changes you need.
Can stop the job running, and use this to do it all at once: https://wordpress.org/plugins/regenerate-thumbnails/
Forum: Plugins
In reply to: [WooCommerce] Missing gallery thumbnail size setting?If your theme declares the image sizes, then the setting for image width will be removed and you can just change the aspect ratio.
You can create a child theme and set your own dimensions: https://docs.woocommerce.com/document/woocommerce-theme-developer-handbook/#section-7
Forum: Plugins
In reply to: [WooCommerce] Adding classes to WooCommerce widgetsMaybe worth giving this a try: https://wordpress.org/plugins/widget-css-classes/
Otherwise, this hook should give you access to what you need: https://developer.wordpress.org/reference/hooks/dynamic_sidebar_params/