IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Coupon by Quantity of ItemsHave at a look at the Dynamic Pricing plugin over at WooThemes.com — it doesn’t create coupons but it does allow you to create rules for quantity discounts.
Forum: Plugins
In reply to: [WooCommerce] Product variations variableIf you want to do that when the variation is selected ( e.g. not added to cart yet ) then you should use jQuery. Or do you want to do this after it’s added to the cart?
Forum: Plugins
In reply to: [WooCommerce] Adding live stock feedThis can be done. One approach is to have the drop shipper create a file ( XML or CSV etc ) that has a list of products and their respective stock levels. That file can either be sent to your site, or your site can download it from their site. Then process the file to update stock levels as indicated in the file data.
We did this for a store a few weeks ago. The way they wanted it done was to use FTP. So we created a script that logs into their FTP server, downloads the stock update file, and processes it. The file contains a list of products, one line per product, and the line data for each product has a SKU and stock level. So our script reads that file and updates stock counts. Fairly simple.
Forum: Plugins
In reply to: [WooCommerce] How can I remove "add to cart" on product image?On hover – that means it’s your theme is forcibly inserting the button when it ought not to do that. If I had to guess, I’d guess you bought the theme at ThemeForest.
Oh … just looked, yep, you bought it at ThemeForest! Not to knock ThemeForest, but just to point out that 99% of the time when people contact us about theme problems related to WooCommerce their theme came from ThemeForest; where sales are high and quality is typically only so-so.
Anyway, use this CSS to hide it:
.action .add_to_cart_button { display: none !important; }Forum: Plugins
In reply to: [WooCommerce] Remove – from products gravity forms and dynamic pricingSounds like a conflict between Gravity Forms price processing and Dynamic Pricing processing. Not sure how to solve that other than to suggest that you not use both – maybe Gravity Forms can handle your price discounts? I don’t know myself, I avoid Gravity Forms whenever possible – it’s like driving a limousine to the market in many cases – LOL – 9 times out of 10 there’s an easier, lighter, quicker way to get it done.
Forum: Plugins
In reply to: [WooCommerce] Can I give away a free download with a paid product?The day was indeed great! Thanks.
Forum: Plugins
In reply to: [WooCommerce] Shipping based on priceHave you looked at the Table Rate Shipping plugin to see if that might help?
Forum: Plugins
In reply to: [WooCommerce] How can I remove "add to cart" on product image?If you want to remove add to cart on product pages, leave the product price blank, with that done no add to cart form appears.
To hide the sale indicator use this CSS:
.onsale { display: none !important; }Forum: Plugins
In reply to: [WooCommerce] Security Issues with WooCommerceIf all else fails:
Lead developer’s contact page:
http://mikejolley.com/contact/
You might also send a report to Sucuri.net also since they allegedly audited the code.
Forum: Plugins
In reply to: [WooCommerce] Update from 2.0.9 to 2.0.10 IssueTemporarily switch to TwentyEleven or TwentyTwelve theme and see if the problem goes away. If it does then it’s an issue in your theme.
Forum: Plugins
In reply to: [WooCommerce] Remove "Sale" tag on product imageAdd some CSS to your theme:
.onsale { display: none !important; }Forum: Plugins
In reply to: [WooCommerce] Product Miniature allignmentTry this CSS:
.woocommerce .thumbnails .zoom { width: auto !important; }Forum: Plugins
In reply to: [WooCommerce] Can I give away a free download with a paid product?We are not the developers of WooCommerce – that would be the folks at WooThemes – we’re independent plugin developers π But ya we agree, WooCommerce is great stuff.
Forum: Plugins
In reply to: [WooCommerce] Process payments at a later dateYou might look at a payment gateway such as Authorize.net that allows you to set the transaction to “authorize” instead of “authorize and capture” — the difference being that authorize simply authorizes a charge to be potentially collected at a future date ( where the future date can only span so far into the future before authorization expires). Capture means “get the money now” so the card would be debited immediately.
Forum: Plugins
In reply to: [WooCommerce] Subcategories woocommerceCould add some code to your templates that use the wp_get_post_terms() function to get the list of categories and display them. The taxonomy name for product categories is product_cat. See the Codex for help on using that function:
http://codex.wordpress.org/Function_Reference/wp_get_post_terms