Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Categories and Sub Categories not sorted correctlyAh, well if you haven’t dragged/dropped them – then they have never been told what order to be in. In screen options, you can increase the number of categories per page. That could help.
Perhaps utilizing parent categories a bit more could also help, rather than having mass amounts all under the same parent.
Forum: Plugins
In reply to: [WooCommerce] Separate the Variation with Product name in Email templateYou can disable attributes being in the product title via this filter: https://github.com/woocommerce/woocommerce/blob/826af31e1e3b6e8e5fc3c1004cc517c5c5ec25b1/includes/data-stores/class-wc-product-variation-data-store-cpt.php#L243
Forum: Plugins
In reply to: [WooCommerce] Sidebar issues (Bootstrap theme)The page content is wrapped in a div with
class="row ", which means it’s full width content. Then the sidebar comes after that.This is due to how the theme is built, not really something we can support. Perhaps look for a new theme if the theme authors aren’t keeping it up to date?
This forum is predominantly for technical support, so if you want feedback or suggestions from other store owners you might want to post on one of the Facebook user groups.
– WooCommerce Help and Share
– Advanced WooCommerce
This plugin can split cart packages based on shipping classes: https://woocommerce.com/products/woocommerce-advanced-shipping-packages/. So it’s definitely possible.
This type of customization is something a bit outside what we can offer (though somebody else in the forum might chime in, though unlikely.)
You’ll likely need to either hire a developer, or use an existing extension:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Forum: Plugins
In reply to: [WooCommerce] Import product translationsBy default, multiple languages is not support by WooCommerce / WordPress. Whether or not you can import this way will depend on the multi-lingual plugin you are using, and I’m afraid that’s not something we can support here.
Forum: Plugins
In reply to: [WooCommerce] Variations in attributesWhen adding custom attributes, you separate the terms with the pipe character. This:
|. You can type it by shift-clicking the backwards slash key, likely above/around the enter/return key on the right.Alternatively, you could also define attributes and terms at Product > Attributes and use those.
More info here: https://docs.woocommerce.com/document/variable-product/
Forum: Plugins
In reply to: [WooCommerce] product page shows website contentI think this is something your theme is doing. For some reason, it is reading those pages underneath as “Child pages”.
If you temporarily switch to a default WordPress theme, this likely won’t happen. So you will need to get in touch with the theme authors.
Forum: Plugins
In reply to: [WooCommerce] New Categories not showingHmm, interesting.
Do you have an server-side caching? Might need to clear that out / disable while testing.
If there is caching, and just disabling doesn’t help. Might need to disable then go through the plugin/theme conflict testing again: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Filter Products based on Geo LocationHow have you defined what a certain product (car) has as a location?
This seems rather custom, and I haven’t seen anything for this sort of scenario before. Likely going to need custom development.
Forum: Plugins
In reply to: [WooCommerce] Categories and Sub Categories not sorted correctlyCategories can be ordered in the backend by dragging / dropping: http://cld.wthms.co/OB8f8x. Are they not displaying in the order defined here?
I’d recommend ruling out plugin / theme conflicts as well: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Now product pictures are not showingFirst, check for a plugin & theme conflict: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Secondly, you could try regenerating all thumbnails as you could have cancelled this process earlier: https://wordpress.org/plugins/regenerate-thumbnails/
Forum: Plugins
In reply to: [WooCommerce] Uncategorized – why? and how to turn off categoriesAt Appearance > Customize > WooCommerce > Products Catalog, you can change what will be displayed on the shop page. Change this to just showing products.
A category needs to be assigned to products now, so just make a general category name and use that. It shouldn’t interfere with anything after you change the shop page display setting.
Forum: Plugins
In reply to: [WooCommerce] Add product to cart when coupon apliedThis action is fired when a coupon is added: https://github.com/woocommerce/woocommerce/blob/906efe1ffccbbba4ed7af0e98d1f5134bf67c5f7/includes/class-wc-cart.php#L1596
And here is a guide on programmatically adding items to the cart: https://iconicwp.com/blog/programatically-add-products-woocommerce-cart/
Alternatively, this plugin makes it possible to add products to the cart when a coupon is applied: https://woocommerce.com/products/url-coupons/
It is a deprecated way of accessing the main WC instance, yes.
Can just change to
WC()->method_name()in all places now instead of$woocommerce->method_name()