Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Customer comment option gone since upgrade to 2.1.2Not too sure what you mean. The order notes field is in the checkout and customers type in their message there.
Forum: Plugins
In reply to: [WooCommerce] Integration Settings goneYes we have removed them and they are now all separate plugins. To download them, you can deactivate WooCommerce plugin and reactivate again so you will see the WooCommerce welcome screen. On that page, there are links to download these plugins.
Forum: Plugins
In reply to: [WooCommerce] Customer comment option gone since upgrade to 2.1.2Do you mean order notes? If so, it is still there.
Forum: Plugins
In reply to: [WooCommerce] Questionaire and ProductThere are no current solutions for this however this can definitely be done.
Forum: Plugins
In reply to: [WooCommerce] Different Image Gallery for Each Product VariationThis forum is for WooCommerce. Please ask your commercial plugin question on the plugin’s support forum.
Forum: Plugins
In reply to: [WooCommerce] How to change Add to Cart button to a Read More button?This is all you need:
add_filter( 'woocommerce_loop_add_to_cart_link', 'change_add_to_cart_loop' ); function change_add_to_cart_loop( $product ) { global $product; // this may not be necessary as it should have pulled the object in already return '<a href="' . esc_url( $product->get_permalink( $product->id ) ) . '">READ MORE</a>'; }Forum: Plugins
In reply to: [WooCommerce] Unable to search orders since 2.1 updateVersion 2.1.3 will fix this issue. Should be out soon.
Forum: Plugins
In reply to: [WooCommerce] How to disable css styles of WooCommerceWhile the user interface option is gone, you can still do this easily with filters. See http://docs.woothemes.com/document/disable-the-default-stylesheet/
Forum: Plugins
In reply to: [WooCommerce] Blank homepage after updateBlank page usually means a PHP error. I would suggest you check your PHP error logs to find out what they are. It could be a simple out of memory error.
Forum: Plugins
In reply to: [WooCommerce] How to disable cart-fragments.min.js?ver=2.0.20?Actually the quotes are not correct from copying and pasting. Try this:
add_action( 'wp_print_scripts', 'de_script', 100 ); function de_script() { wp_dequeue_script( 'wc-cart-fragments' ); return true; }I’ve tested this and it works.
Forum: Plugins
In reply to: [WooCommerce] How to disable cart-fragments.min.js?ver=2.0.20?Well you need to put it into an action and put it inside your theme’s functions.php file like this.
add_action( ‘wp_print_scripts’, ‘de_script’, 100 ); function de_script() { wp_dequeue_script( 'wc-cart-fragments' ); return true; }Forum: Plugins
In reply to: [WooCommerce] How to disable cart-fragments.min.js?ver=2.0.20?Put this in your theme’s functions.php file.
wp_dequeue_script( 'wc-cart-fragments' );Forum: Plugins
In reply to: [WooCommerce] Product pages misallignedFirst thing to try is update your theme to the latest version and go from there.
Some things to try, go to settings->permalinks and click on save. If that doesn’t work you can test if you have any template overrides that could cause issues by going to WooCommerce->system status and click on the TOOLS tab and on that page, check the box for the template debug thing and save. Re-test.
Forum: Plugins
In reply to: [WooCommerce] Custom Individual Product TemplateYou can certainly put in a condition in that template file to filter out what you want.
Something like this:
if ( $product->id == 2449 ) { // do this style } else { // do other style }