Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to make product tabs to be horizontalIt should be possible to change with a custom child theme, yes. That customization is a bit more than we can provide though – this is something theme specific. Might want to find a different theme, one that you like more.
Else you could look into hiring a developer:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Forum: Plugins
In reply to: [WooCommerce] Added to Cart Button /ViewCart buttonHello,
What you are describing sounds like something the theme is doing. By default, there is just another button that appears like this: http://cld.wthms.co/UpXy57. YOu’ll see the default behavior if you temporarily switch to a default WordPress theme.
So this is something you’ll need to contact the theme authors about, as the code that generates this is not within WooCommerce core.
Which select are you referring to exactly? Ones in the admin, or the one on the variable product page?
If the later, I’m not sure I see what you’re talking about. I can click the select field then use arrows right away. This is just a normal select.
If I tab-navigate to the select then use arrows, it also works as it should.
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Predefined short description for some productsThis is pretty specific, doubt there are any plugins for this. Going to need some customizations here.
If you can’t quite figure out what code you need, I’d suggest using one of these services:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Forum: Plugins
In reply to: [WooCommerce] Noo shipping methods shown in cart and checkoutThat’s correct, geolocation will only be used for default location. Once another location is entered, the order should be able to go through.
Check your shipping zones, they might not be set up correctly. There’s a short guide on shipping zones here that could help: https://calebburks.com/shipping-rate-configuration-in-woocommerce/
WC > Settings > Shipping > Shipping Options will have an option to enable shipping debug mode. You can check this then go to the cart/checkout again and see what zone you’re being matched with.
Forum: Plugins
In reply to: [WooCommerce] error display Custom Sidebars columYou can upload images to an external outlet and post the link here.
Not to sure what you mean, but think you might just have too many columns? Click “Screen Options” in the top right of the page and disable some columns you don’t need.
Forum: Plugins
In reply to: [WooCommerce] change woocommerce product permalink structureCurious as to why? Doesn’t seem very useful for SEO reasons.
There aren’t any filler variables for product ID, so this will either take some custom code or another plugin.
Forum: Plugins
In reply to: [WooCommerce] New order without adding card data or paypalWhat is the order status? It it is pending payment, that means the user went to checkout with PP, but then left without logging in / paying. There’s not much you can do in these scenarios.
At WC > Settings > Products > Inventory, you can set a time limit for how long until pending payment orders are automatically cancelled.
Forum: Plugins
In reply to: [WooCommerce] Stop Creating the same images size!Some talk about this here: https://github.com/woocommerce/woocommerce/issues/18912
TL;DR:
It’s because the single image size is uncropped and it happens when height is ” or 999999. Does not seem to be a workaround.
Forum: Plugins
In reply to: [WooCommerce] No link product downlodableNot sure I fully follow what you mean? The download links are being sent to the customer at all, neither in emails or in their My Account areas?
First, check to make sure the order statuses are reaching the completed state.
Secondly, if this is just a problem in your PDF invoices, then you will need to contact the appropriate plugin authors as PDF invoices are not a core feature.
Forum: Plugins
In reply to: [WooCommerce] Complete DateAre you sure the orders are completed? What about editing the order, and setting the status to completed again, manually?
I believe there are two metas for backwards compatibility reasons. WC 3.0 (was originally tagged at 2.7) made changes to how dates were stored, some history here: https://github.com/woocommerce/woocommerce/issues/13498
The safest way, moving forward, would be to use the methods on the order object to update these values. So
$order_object->set_date_completed( '2018-08-25' )for example.So could get a list of order IDs with no completed date, then loop through them all and set a date (hopefully based on another date that was stored already).
Forum: Plugins
In reply to: [WooCommerce] rating productsVery likely a conflict form your theme or another plugin. Please follow this guide to find the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Variation Not WorkingThat’s not really a lot of information to go off of. What’s not working exactly?
First thing to do is rule out plugin/theme conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Bug with WooCommerce appearing all of a sudden?First off, you shouldn’t have errors to set display on a live site – it’s a security risk. So in your wp-config.php file, you should set WP_DEBUG_DISPLAY to false: https://codex.wordpress.org/WP_DEBUG
Secondly, this error is coming from the
fresh-frameworkplugin. You should contact them about this error, as a future version of WooCommerce (likely 4.0) will make this PHP notice more serious and likely cause real error..woocommerce-page div.product div.imagesis set to float left, with a width of 48%..woocommerce-page div.product div.summaryis set to float right, with a width of 48%.There are a couple of ways to fix this, here is one try:
.woocommerce-page div.product div.images { width: 35% !important; } .woocommerce-page div.product div.summary { float: none !important; width: 60% !important; }Could remove the !important’s, depending on how you add the css.