IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Fetch related product image in product category loopYou would do this the same way you retrieve the post thumbnail image for a regular WP post. There’s a lot of info on that around the net, and some in the WP Codex too. The only significant difference is that instead of using $post ID you’d use either $product ID or $_product ID ( I forget off-hand which one ).
One way is to click the “Duplicate” link beneath a product when viewing the list of products. That makes a complete copy. Then you’d delete unwanted variations in that product. So it’d still be a variable product with one variation, unless you edit it to be a simple product — which might defeat the whole purpose of this method.
If that’s not effective for you then you’ll need some custom code built to handle it exactly the way you envision it.
Forum: Plugins
In reply to: [WooCommerce] Rupee Symbol not showingThe symbol displays correctly on my system. Is you site using UTF-8 encoding for database and Web pages?
If you don’t have an encoding meta tag in your pages try adding this to the page header and see if that resolves the issue for you:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />Forum: Plugins
In reply to: [WooCommerce] WooCommerce – Adding Paypal Percentage to TotalAdding a payment gateway fee is possible but at this time only through 3rd party non-free plugin. And we aren’t allow to link to non-free plugins here on the forum, so if you really must have this feature then search bing.com for “woocommerce payment gateway fees”
Forum: Plugins
In reply to: [WooCommerce] Hiding the yellow product count markTry doing a validation on your CSS to make sure there aren’t any errors breaking the parsing.
Forum: Plugins
In reply to: [WooCommerce] woocommerce 2.0.7 ProblemThere is code in your theme, or a plugin, that is attempting to insert tabs into the product display but it’s “doing it wrong”.
So do as James said: Activate TwentyEleven or TwentyTwelve temporarily and see if the error goes away. If it does the problem is in your theme. If it doesn’t the problem is in a plugin. And with that info you can track it down and fix it.
Forum: Plugins
In reply to: [WooCommerce] How is this not an option??? COD extra feeJames, as you well know, WooCommerce is open source – so you can modify it any way you like 🙂
Forum: Plugins
In reply to: [WooCommerce] Sort by availabilitySee here:
http://docs.woothemes.com/document/custom-sorting-options-ascdesc/
What you want to do is use that code and add something like this to “case” clauses in the custom_woocommerce_get_catalog_ordering_args function:
case 'availability_asc' : $args['orderby'] = 'meta_value_num'; $args['order'] = 'asc'; $args['meta_key'] = '_stock'; break;And something like this to the custom_woocommerce_catalog_orderby function:
$sortby['availability_asc'] = 'By availability';Or maybe change “asc” to “desc” in all instances. “asc” means ascending ( low to high ) , “desc” means decending ( high to low ).
Forum: Plugins
In reply to: [WooCommerce] WooCommerce – Check product availability and return custom textLooks simple enough to resolve – not sure why you weren’t given some example code to assist, and not sure how their plugin is marking products as pre-order so I can’t give you any sample code to use. If you get stuck you may opt to contact us directly and we’ll try to help – no cost involved of course.
Forum: Plugins
In reply to: [WooCommerce] Odd Checkout Error with All Payment GatewaysYour theme probably has a screwy checkout.php template overriding the default WooCommerce templates. Take this up with the theme developer — looks like they have a phone number listed on their site. Ring ’em up and tell ’em you need it fixed.
Forum: Plugins
In reply to: [WooCommerce] Hiding image on specific product pagesNo problem. Nice tats. I wouldn’t get one but looks Ok on you. Happy to help a fellow Texan ya’ll 😉
Forum: Plugins
In reply to: [WooCommerce] Hiding image on specific product pagesYou have a parse error in your CSS 🙂
Open style.css and go to line 33. You see this:
#content .quantity input.qty {margin:0 !important;}
}
Remove that } character.
Forum: Plugins
In reply to: [WooCommerce] Hiding image on specific product pagesWhat puts that DF image into your pages?
Forum: Plugins
In reply to: [WooCommerce] Hiding image on specific product pagesTry this:
body.postid-543 .dairyfree { display: none !important; }
Forum: Plugins
In reply to: [WooCommerce] PDF stamping functionalityThis is somewhat problematic. There are many versions of PDF files, some use compression not supported in other versions, so in short, you’d have to save all PDF files in version 1.4 in order to make this widely effective across all PDF files. And that version may or may not be viable for you. This is something you have to check into to see what limitations and/or risks are involved in having PDFs in v1.4 format.
If it turns out that 1.4 is Ok for you, then as I said, this feature is possible. But it’s not quick to build. So you’d wind up paying to have it built – unless you know a PHP / WooCommerce developer willing to built it for free.