Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Picture sizeCan make a child theme and declare you own image sizes: https://docs.woocommerce.com/document/woocommerce-theme-developer-handbook/#section-7. Else just use CSS to make them smaller.
Forum: Plugins
In reply to: [WooCommerce] thumbnail with margins that weren’t there beforeThere were changes to image sizing and display in WooCommerce 3.3.3, yes. But if the theme wants it too look a certain way, they need to implement the styling 🙂
Forum: Plugins
In reply to: [WooCommerce] Removing price and stock rich snippets from Google SearchYou can use the
woocommerce_structured_data_productfilter to remove some structured data: https://github.com/woocommerce/woocommerce/blob/5bec3b229fd3fb16f144035efb9007473465b016/includes/class-wc-structured-data.php#L272Forum: Plugins
In reply to: [WooCommerce] Out of Stock MessageTry the
woocommerce_get_availability_textfilter maybe instead?add_filter( 'woocommerce_get_availability_text', 'wcs_custom_change_availability_text', 15, 2 ); function wcs_custom_change_availability_text( $availability, $product ) { if ( ! $product->is_in_stock() ) { $availability = __( 'Esgotado', 'woocommerce' ); } return $availability; }Also, if there are only three variations, it should be easy to hide out of stock ones if that is something you are interested in? The latest version of WC should be doing that for you automatically.
Forum: Plugins
In reply to: [WooCommerce] Unable to enable taxes in settingsThat is super odd. There are two explanations I can think of.
1) A plugin/theme is causing a conflict. So need to rule out that following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
2) There are plugins adding a lot of fields to this settings page, causing there to be more than ~1000 fields to max_input_vars limit as been reached: https://docs.woocommerce.com/document/problems-with-large-amounts-of-data-not-saving-variations-rates-etc/#php-539-and-max_input_vars (seems unlikely on a settings page though)
Forum: Plugins
In reply to: [WooCommerce] Calculate Shipping by post codeCould you please take some screenshots of your shippings zone setup? First a screenshot of the overview of all zones, then one for each of the zones settings (zip codes / locations).
I recommend https://snag.gy for easily sharing screenshots.
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Applying a coupon (%) – currency bugThis does not happen by default, so there is something on your site specifically causing this problem. Follow this guide to find the plugin or theme culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] How to fix total-price 2digits problemThis does not happen by default, so there is something on your site specifically causing this problem. Follow this guide to find the plugin or theme culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Woocommerce shipping options not showing unless I’m logged inYou likely need to enter in an address before shipping rates will show. When not logged in, there is no address yet attached to the user. The shipping rates show up for me once I enter an address: http://cld.wthms.co/DDBp3j
Forum: Plugins
In reply to: [WooCommerce] thumbnail with margins that weren’t there beforeThis is something your theme has control over, so you should contact the theme authors. This custom CSS should help patch it up though:
.thumbnails .woocommerce-product-gallery__image { margin-right: 10px !important; width: 100px !important; }Can set the margin to
0if you don’t like the 10px of space in between (but I didn’t think it looked good without any margin).Forum: Plugins
In reply to: [WooCommerce] Plugin question about matching product and accessoriesComposite Products is the best extension for this. Each image option will be it’s own product, and you can set up conditions on whether or not an option should be available based on previous selections: https://www.woocommerce.com/products/composite-products/
Forum: Plugins
In reply to: [WooCommerce] Minimum Order AmountThis forum can only be used to support the core WooCommerce plugin. Per the forum rules, we can’t support premium extensions here.
So if you purchased the extension from WooCommerce.com, you can go ahead and contact premium support there: https://woocommerce.com/my-account
Forum: Plugins
In reply to: [WooCommerce] unset shipping country in function.phpNot so sure you can do this what that filter. If you can’t get the code needed, I would recommend using a plugin. Conditional Shipping and Payments can help with this: https://www.woocommerce.com/products/woocommerce-conditional-shipping-and-payments/
Here is a example rule: http://cld.wthms.co/NIfaA5
Forum: Plugins
In reply to: [WooCommerce] Prices Displayed in shop incorrectlyThere must be something interferring here, likely another plugin or your theme. Follow this guide to rule out conflicts, or find the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Applying global images to variationsIt does make sense, but I’m afraid this is not possible to do, at least not without customization.
If the other attributes don’t affect the image, cost, or stock though, then you don’t need to have so many variations and could instead use the “any Size” option for example.