IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce confusionMijireh helps with processing payment that is what you want to use, or your can use any of over 80 different payment processing methods. Easiest is probably PayPal standard, which comes with WooCommerce, or if you’d rather not use PayPal then there many other options. For example, you can get an account at Stripe.com and use them to handle processing credit card charges – no formal merchant account required since Stripe handles this for you.
The easiest way to make it go away is to install the updater plugin. Why wouldn’t you want update notices anyway?
Forum: Plugins
In reply to: [WooCommerce] Sinlge quantity Product still showing available after purchaseHave you read the documentation?
Forum: Plugins
In reply to: [WooCommerce] Add SKU cart pageYou need to know how to read and write HTML and PHP. With that, you could probably use this to print the SKU somewhere in the table:
<?php echo $_product['sku']; ?>Forum: Plugins
In reply to: [WooCommerce] price "From $____"Try some CSS like this:
ul.products li .price { display:none; }Forum: Plugins
In reply to: [WooCommerce] Woocommece system report fileHave you asked them to assist on this too?
Forum: Plugins
In reply to: [WooCommerce] output product variations with priceFor WooCommerce 2.x you’d need something like this, if I remember right:
echo get_post_meta( $post_object->ID, '_price', true);Forum: Plugins
In reply to: [WooCommerce] Can a Woocommerce Website Sustain with Huge Traffic LoadDoesn’t matter which since both have about the same reputation as hosting companies. Again, I will stress that the DB server is the most important aspect so make sure it has plenty of resources available. If global distribution is an issue for you, consider using a CDN network such as Cloudflare to cache your stuff for global distribution.
Forum: Plugins
In reply to: [WooCommerce] How to set a checkbox to checked as defaultEither way you’re likely to be subject to adaptations at some point or other down the road.
Forum: Plugins
In reply to: WooCommerce Smart Coupons vs WooCommerce Gift Certificates ProNirav didn’t mention that he’s the author of Smart Coupons.
We build features based on our own impressions to begin with, then add new features that customers request. If a feature is not in one of our plugins then no one asked us to add it yet π
As for compatibility, we have no open reports of incompatibilities. When we receive such a report we address it same day. And, we have a tool to import coupons if anyone needs it.
@scruffy1: We try to answer emailed support requests same day, sometimes turnaround time is 1 to 2 days, depends on the number of support requests we receive. This week was heavy with support both via phone and email.
Send us an email with your site URL and login info and I’ll make sure it gets addressed this weekend. Use the “Contact Us” form on our site, or call the toll free number listed at the top of our site pages for quick response.
BTW: We released a new version of our Gift Certificates plugin today ( we fixed an issue that was reported this morning, and then released a new version 10 minutes later )
Forum: Plugins
In reply to: [WooCommerce] Product page displays competitors' links!?!?I don’t see any external images or links. Have her test using another browser.
Forum: Plugins
In reply to: [WooCommerce] How to set a checkbox to checked as defaultModify the billing form template ( form-billing.php ) . Move a copy to your theme, then edit it. No function required. See the WooCommerce documentation for how to copy templates to your theme directory.
Forum: Plugins
In reply to: [WooCommerce] Add text to the right of "Add To Cart"You can modify the “add to cart” template file directly. The files are in single-product/add-to-cart directly. Check the WooCommerce docs for how to copy those so you don’t have to modify the plugin’s templates directly.
Forum: Plugins
In reply to: [WooCommerce] mod_securitySee this thread at the jQuery site:
http://forum.jquery.com/topic/jquery-cookie-js-triggers-default-apache-mod-security-rules
Forum: Plugins
In reply to: [WooCommerce] How to set a checkbox to checked as defaultGet rid of this aspect:
<?php checked($checkout->get_value('createaccount'), true) ?>