IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Redirect after checkout in WooCommerceYou could modify the “Thank you” page template to include a simple redirect via javascript. The page is titled “Order Received” by default. The template file itself is in the woocommerce plugin directory unless your theme has a set of checkout page templates.
Look in your theme directory for this file:
woocommerce/checkout/thankyou.phpIf it exists, edit that to include a javascript redirect.
If it doesn’t exist, copy it from
wp-content/plugins/woocommerce/templates/checkout/thankyou.phpto
wp-content/themes/YOUR_THEME/woocommerce/checkout/thankyou.phpAdd something like this:
<script> window.location = 'http://redirect-to-this-page' </script>Forum: Plugins
In reply to: [WooCommerce] woocommerce price not displayed in home pageI think you meant to write “admin panel” since cPanel is hosting platform control – not WordPress admin control.
Anyway, check your theme templates. If you have prices set for products and they don’t display then it’s possible that the theme templates are out of date. Either that, or you may have a plugin interfering.
A quick test is to temporarily activate TwentyEleven or TwentyTwelve theme, then view your home page, if you see prices it’s definitely a theme issue.
Forum: Plugins
In reply to: [WooCommerce] Bulk change of SLUG using a Custom FieldYes, write some code that reads your custom field data and writes it to the wp_posts table in the post_name field. Be sure to sanitize is properly before writing.
Forum: Plugins
In reply to: [WooCommerce] Bulk adding custom fields to Woo productsHave you looked at the CSV Import Suite plugin available at WooThemes?
Forum: Plugins
In reply to: [WooCommerce] Hotmail accounts do not receive New order emailsMicrosoft operates Hotmail – and no company on the planet is more draconian than Microsoft when it comes to blacklisting mail servers. It’s almost impossible to get unblacklisted once you’re on their blacklist. I know this from direct experience.
Here’s how to get around their BS:
Install the Mandrill plugin for WordPress ( free in the plugin repository ), then sign up for a free Mandrill account at mandrill.com, configure the plugin, and presto: David slays the Giant — because of all your site’s outbound mail will be sent through Mandrill instead of your hosting company’s mail servers. And Mandrill handles making sure their servers remain unblacklisted.
Mandrill is a free SMTP mail service operated by the owners/operators of MailChimp. It’s free as long as your site doesn’t send more than 12,000 emails per month.
And no, we are not affiliated with them in any way.
I’m simply telling you how we solved this problem for numerous sites that had the exact same headache.
Forum: Plugins
In reply to: [WooCommerce] woocommerce 2.0.7 ProblemTo fix the problem, first you need to be fluent with PHP and WordPress hooks and trace the action code for “woocommerce_product_tabs” in the WooCommerce code.
Or try this plugin as an alternative:
http://wordpress.org/extend/plugins/woocommerce-custom-product-tabs-lite/
Or hire someone to do it for you if it’s beyond your capabilities.
Forum: Plugins
In reply to: [WooCommerce] How to add package type product with sub-itemsEasiest approach is probably to add a standalone product that includes all tracks.
Forum: Plugins
In reply to: [WooCommerce] Add product as column in orders overviewYou probably need another filter. Possibly like this:
add_action( 'manage_shop_order_posts_custom_column', 'my_custom_order_columns', 2 ); function my_custom_order_columns( $column ) { switch ( $column ) { case "title" : // code to look up product title goes here // echo get_the_title( $PRODUCT_ID_GOES_HERE ); break; }Forum: Plugins
In reply to: [WooCommerce] How to start multistore site using woocommerce?Easiest way would be to use WordPress in multisite mode, probably with BuddyPress, with specific plugins enabled for each new site that is created. There are other approaches though.
If I remember right there is no replacement going on. It is working as you described because that’s how the code is written. And unless I’m mistaken the assumption is that IF the shopper wants free shipping then they’d select it.
For example, maybe you offer free shipping, but I want my stuff sent overnight via UPS because I need it sooner than free shipping would get it to me. So I need to see the UPS options so I can opt to may for shipping if I want to.
Forum: Plugins
In reply to: [WooCommerce] Issue with space/special charcater in Var. Product attributes?Spaces in attribute names works fine with the regular dropdown. So my guess is that it’s a problem with the plugin you’re using. Will the developer look at it and fix it? If not, is it free for download? Maybe I can take a look and tell you how to correct it.
Forum: Plugins
In reply to: [WooCommerce] Adding an external link at the product attributes? Why not?You could attach the user guide file to the product ( check the Downloadable box to make the file attachment field appear ), so when someone buy’s the product they get the download link via email and on their My Account page. Will that work for you?
Forum: Plugins
In reply to: [WooCommerce] Disable Renaming Page TitlesYou might get a response faster in the plugin’s forum:
Forum: Plugins
In reply to: [WooCommerce] Need Category on cart pageYou get product categories the same as regular WP posts categories, except it’s a custom taxonomy called product_cat, so you’d use that name along with the product ID number.
http://codex.wordpress.org/Function_Reference/wp_get_post_terms
Forum: Plugins
In reply to: [WooCommerce] want to replace CART text everywhere on wocomerce with basketUse a WooCommerce language translation file to do it – that’ll make it effect site-wide. The WooCommerce docs explain the basics of what needs to be done for translations.