Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change text in Woocommerce categoriesHi @mrpress01 – this can be changed using localization, which changes one string of text into another. I personally recommend the free Loco Translate plugin for doing this.
Forum: Plugins
In reply to: [WooCommerce] How to change minicart icon in headerIt’s added using Fontawesome and uses the
::afterCSS pseudoclass. The following CSS would change it to the traditional shopping cart icon:a.cart-contents::after { content: "\f07a" !important; }To add that, go to **Appearance > Customise > Additional CSS**.
Forum: Plugins
In reply to: [WooCommerce] Same item imported from multiple distributors@mngoalie – I think you’ll want to consider a potentially bigger issue, which is that WooCommerce requires SKUs to be unique, so, if you import a bunch of products which are exactly the same but can be purchased from various distributors, it’s going to be tricky because the SKU numbers need to be unique.
I would first take a look at which plugin can offer this as it might also have some kind of sorting ability(you’d be looking at a marketplace plugin or something similar).
Forum: Plugins
In reply to: [WooCommerce] How to change product font color in woocommerce cart@perfectdrip – Those are links back to the product pages, thus, the color is inherited from any anchor element CSS rules applied. You can try this, which will change the color of only the anchor elements that are children of the cart form:
.woocommerce-cart-form a { color: blue; }You’ll probably want to pick a specific hex color, though. π
Example:
http://cld.wthms.co/bHWxOJForum: Plugins
In reply to: [WooCommerce] Import data from XT-CommerceIt seems like you can export from XT:Commerce to a CSV file:
https://xtcommerce.atlassian.net/wiki/spaces/MANUAL/pages/917726/xt+im+export+-+Import+Export
Once you have a CSV file, you’d just need to properly label the header columns and match the expected formatting in order to import. This is explained in the CSV Import Schema:
https://github.com/woocommerce/woocommerce/wiki/Product-CSV-Import-Schema
Forum: Plugins
In reply to: [WooCommerce] Order Status – On Hold Validation Error@quantum17 – that’s weird, your stock level shouldn’t really go negative. What is the difference in the WooCommerce order total and the total sent to PayPal? You can check in your PayPal logs(if already enabled) by going to WooCommerce->Status.
Forum: Plugins
In reply to: [WooCommerce] Customer note button and links not workingHi @omerior- this works for me with Storefront and WooCommerce 3.4.2:
http://cld.wthms.co/KR55hrWhen admin meta boxes or buttons fail to work properly it’s almost always caused by a theme or plugin conflict, so, test with a default theme(twenty seventeen) and with only WooCommerce enabled.
Forum: Plugins
In reply to: [WooCommerce] Changing “Details” text to “Product Details” button@jackson1986 – You can do a string replace from “Details” to “Product Details” using localization. I don’t know if you have a plugin or something that creates this “Share Cart” function but you’d want to search through that plugin for the string. I recommend the free plugin Loco Translate for that.
You can use your browser’s Inspect Tool to inspect the “Product Details” link in order to tweak the CSS to make it look like a button(add some padding and a background-color). You can then add the CSS to your site using a plugin or to your child theme’s style.css file.
Forum: Plugins
In reply to: [WooCommerce] Remove span woocommerce-input-wrapperHey @kevinmamaqi- I don’t see a way to non-destructively change that as it’s created here:
There is some JavaScript within the plugin as well that looks for that class for some checkout functionality.
What are you looking to do?
Forum: Plugins
In reply to: [WooCommerce] Structured data incorrect errors@janneke8incosi – WooCommerce 3.0+ uses JSON-LD by default. Perhaps you have old template files still installed with your theme? Check for template overrides by going to WooCommerce->Status and scrolling to the bottom.
Forum: Plugins
In reply to: [WooCommerce] Customising WooCommerce Single Product PageMarking resolved.
Cheers,
Forum: Plugins
In reply to: [WooCommerce] facing issues in publishing the products@aadarsh648 – Thanks for trying that. Can you send a copy of your System Status Report(WooCommerce->Status)?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce built in csv import/export fails to update prices@dywi – your variations need to have their own unique SKU numbers different than the parent product. So, for instance, if I wanted to have a parent SKU for my t-shirt, I could call it
0001. The variations would need to be a child of that, so, something like0001-M(for medium size) or0001-L(for large size).Your parent product does not have to have a set SKU. In fact, if the parent product can’t be ordered by itself(without a variation selected), it makes sense for it not to have a SKU.
- This reply was modified 7 years, 11 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] Product Category List IssuesHey @ergonomi – Take a look at the settings for Category display, which is now found in the Customizer. **Appearance->Customize->WooCommerce->Product Catalog.
Forum: Plugins
In reply to: [WooCommerce] Alterar campo meta na pΓ‘gina de pedido no adminWhy not use
woocommerce_order_status_processingas the hook?