IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Sort by availabilityWhat does “Availability” mean to you in this context? Not quite clear on what data you want to sort on.
Forum: Plugins
In reply to: [WooCommerce] Hiding image on specific product pagesTry CSS like this:
body.postid-543 .dairyfree { display: none; }
Where 543 is the product ID number.
Forum: Plugins
In reply to: [WooCommerce] Help diagnosing email sending issuesI’m not sure what the problem might be. But I can tell you one way to get around most email headaches that result from filtering, blocking, etc.
Get the Mandrill plugin for WordPress ( it’s in the plugin repository ), then sign up for a free Mandrill.com account, and use that plugin in your site. From that point on all outbound email will be sent by Mandrill, and it is highly reliable best I can tell. BTW: Mandrill is owned and operated by the folks behind MailChimp.
Forum: Plugins
In reply to: [WooCommerce] How is this not an option??? COD extra feeModerators – I might have posted links to several other paid plugins from other developers today in an effort to help posters find a viable solution ( when no free solution is available – as is the case with our plugin that you removed the link for) , so you might want to head around to my posts and remove those too as I can’t remember whether I did that or not.
I’m generally only concered about helping – and in my book something doesn’t have to be free to be helpful 😉 particularly when there is no other choice.Forum: Plugins
In reply to: [WooCommerce] Add field to shipping methodThis plugin might work for you, at least in part if not entirely:
http://wordpress.org/extend/plugins/order-delivery-date-for-woocommerce/
Forum: Plugins
In reply to: [WooCommerce] Hooks for theme using content wrapperForum: Plugins
In reply to: [WooCommerce] Customer selected text box on productGet a copy of the “Product Addons” plugin from WooThemes.com and add a text field for the product in question 😉 Simple as that. This is the only solution I’m aware of, and it does cost a few bux, well worth it.
Forum: Plugins
In reply to: [WooCommerce] Buy Now Option? NO ADD TO CARTTo have the add to cart action redirect into checkout try putting this in your theme’s functions.php file ( assuming your theme has a functions.php file )
add_filter ( 'add_to_cart_redirect', 'custom_redirect_to_checkout', 20, 1 ); function custom_redirect_to_checkout( $url = '' ) { global $woocommerce; $checkout_url = $woocommerce->cart->get_checkout_url(); return $checkout_url; }Note: If you use that code it will affect all products. If you want this to only affect specific products then you need a bit more code in the function that takes into consideration which product is being added to the cart.
Forum: Plugins
In reply to: [WooCommerce] shipping rates per countryThe Free Shipping option already has a country setting so you can limit that to specific countries – and free means no cost of course so I’m not sure what you meant by “ahust free shipping from diffirent amounts per country.”
As for applying different rates for different countries, it depends on what shipping module(s) you’re using – and in theory many of them handle this on their own. For example, UPS will give rates based on the destination address.
Forum: Plugins
In reply to: [WooCommerce] How is this not an option??? COD extra feeHey guys, we have a plugin “Payment Gateway Fees & Restrictions” that can add fees to any payment gateway ( plus other cool features ).
As for tying shipping methods to payment methods, it makes sense ( to me anyway ) that this isn’t part of the core WooCommerce code.
BUT – I can tell you that last week we built a custom solution for a guy so he can tie C.O.D. to Fedex – so in his store if you select C.O.D. for payment then your only option for shipping becomes Fedex. Thus, this kind of stuff is possible, but it IS custom development work.
[Link to premium plugin moderated]
Forum: Plugins
In reply to: [WooCommerce] Using WooCommerce to sell course placesYou might try using the Product Addons plugin available from WooThemes.
Forum: Plugins
In reply to: [WooCommerce] PDF stamping functionalityThis is possible, depends on how you deliver the file. Is it a download attached to an email, or is the download link inserted into the email and the buyer then comes to your site to download the file?
Forum: Plugins
In reply to: [WooCommerce] Where are the woocommerce orders stored in the database?Correction since I can no longer edit my post:
In WooCommerce 1.x, there were NO woocommerce_order_items woocommerce_order_itemmeta tables.
When testing WooCommmerce shipping plugins, remember this one thing: It caches shipping results based on your current cart, so to force it to update the results you have to change the cart. The easiest way to do that is to do your test, then increment a product qty in the cart by 1, then test again ( don’t reuse a former qty, always increase qty to something never used previously for the current session ), — repeat.
This might have changed at some point, but if I remember right it caches shipping results, so you have to break the cache by changing the cart for testing purposes.
Forum: Plugins
In reply to: [WooCommerce] Related Products FilterActually editing the WooCommerce core code is not the best way to handle things since when you update the plugin you lose changes. So do something like this instead, in your theme functions file probably ( or make it into a plugin, which is simple enough to do )
add_filter( 'woocommerce_product_related_posts', 'my_related_products', 20, 1 ) ; function my_related_products( $related_products = array() ) { global $post, $woocommerce; $limit = 5; $terms = wp_get_post_terms( $post->ID, 'product_tag' ); if ( !$terms || is_wp_error( $terms ) ) return $related_products; if ( empty( $terms ) ) return array(); $tags_array = array(); foreach ( $terms as $term ) $tags_array[] = $term->term_id; $meta_query = array(); $meta_query[] = $woocommerce->query->visibility_meta_query(); $meta_query[] = $woocommerce->query->stock_status_meta_query(); $related_products = get_posts( array( 'orderby' => 'rand', 'posts_per_page'=> $limit, 'post_type' => 'product', 'fields' => 'ids', 'meta_query' => $meta_query, 'tax_query' => array( array( 'taxonomy' => 'product_tag', 'field' => 'id', 'terms' => $tags_array ) ) )); return $related_products; }