IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Downloads are pending after paymentThis is the expected behavior. Downloads are not available until an order is marked Processing or Completed. So check your payment gateway for issues in receiving a PayPal IPN request ( which is the mechanism used by PayPal to notify your site that payment is successful ).
Forum: Plugins
In reply to: [WooCommerce] cart shows slug instead of useful textIt’s “sanitize_title( $name )” doing this. You’re using a WP function only meant to sanitize post/page titles for making post/page slugs.
Forum: Plugins
In reply to: [WooCommerce] Checkout – Place order grayed out & loading eternallySomething on your site is interfering with WooCommerce Javascript Ajax requests. Instead of WooCommerce returning the expected snippets of HTML from Ajax, what is returned is a complete HTML document, which indicates interference of some sort.
Try switching to TwentyTwelve theme and see if checkout works. If not, disable all plugins except WooCommerce and try again.
Forum: Plugins
In reply to: [WooCommerce] Calculate Shipping form open on page loadcart.php would wind up looking like this:
<script> jQuery( document ).ready( function() { jQuery( ".shipping-calculator-form" ).slideDown( 'fast' ); }) </script> <?php /** * Cart Page * [ BIG SNIP .....]Forum: Plugins
In reply to: [WooCommerce] Shipping setupYou might have a look at Table Rate Shipping for WooCommerce
Forum: Plugins
In reply to: [WooCommerce] Terms and conditions as lightboxThis possible. You need to write a tiny bit of jQuery code and add an ajax function to your theme. I don’t have step by step info for you – just saying it’s possible to do and a competant WooCommerce developer could get this working in maybe 30 minutes.
Forum: Plugins
In reply to: [WooCommerce] Calculate Shipping form open on page loadPut this in your cart page template:
<script> jQuery( document ).ready( function() { jQuery( ".shipping-calculator-form" ).slideDown( 'fast' ); }) </script>Forum: Plugins
In reply to: [WooCommerce] Order NotesModify the checkout templates, and add custom code somewhere ( plugin or theme ) that stores the data from whatever fields you add.
Forum: Plugins
In reply to: [WooCommerce] Using a api as product priceYes it is possible. You need a custom script to download the prices and update the product settings.
Forum: Plugins
In reply to: [WooCommerce] "available on pre-order" wording in woocommerce?You need to:
– Determine how the plugin stores a pre-order flag in the database
– Use a query to read the flag for the product being displayed
– take action based on the flagExample, assuming the plugin stores the setting in a post meta field called “_preorder”:
global $product; $preorder = get_post_meta( $product->id, '_preorder', true ); if ( $preorder ) { // Do this } else { // Do that }Forum: Plugins
In reply to: [WooCommerce] Can't set variation default priceWith variations, the product page should show “From: $XXXX” where XXXX is the lowest variation price. If you’re not seeing that then it could be that your theme code isn’t designed correctly.
If you want to display a specific variation price then you need to write some code that looks up the product, gets the product children, and finds the proper price for the desired child product. ( variations are children of the parent product )
Forum: Plugins
In reply to: [WooCommerce] Cart, Checkout and other pages are blankThat error means that the product object is either not loaded, or not available to the template code. You might try adding this to the top of the content-product template of your theme:
<?php global $product; ?>Forum: Plugins
In reply to: [WooCommerce] TAGs on the product pageThere’s no setting in WooCommerce It’s a theme issue, so you have to modify your template(s) so that they don’t write the tags.
Forum: Plugins
In reply to: [WooCommerce] Update ruined site layout…No problem π
Forum: Plugins
In reply to: [WooCommerce] Product tags in order confirmation email?Do you know how to pull tags from the database in general? In WooCommerce, it would work the same as in WordPress for getting post tags.
http://codex.wordpress.org/Function_Reference/wp_get_post_terms
Something like
$term_list = wp_get_post_terms( $product_id, 'product_tag', array( "fields" => "names" ) ); print_r($term_list);You have to modify that to include the correct product ID, and some code to print the tag list. But that’s a start.