Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Issues when saving Product DataOn my first reply to you I said for you to turn off all plugins except WC and you stated you did but didn’t resolve the issue. So I am confuse why now you’re saying it works when WPML is turned off…??
latest version of everything, clear cart on logout ENABLED and yes I only use pretty permalinks…
I just tested this on Firefox and it works fine…
Forum: Plugins
In reply to: [WooCommerce] Email Formatting & Styling….Again, ALL styles are in the templates…They are not being called from anywhere. It is INLINE styles like I mentioned above.
For headings, look in the template file email-header.php and you will see all styles are in the template itself inline.
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)The settings you see in the SHOP page will not work as WC does not use the standard page.php file template. Instead it has its own which are all in the templates folder of WC’s plugin. But regardless of this, if you already removed the code as what I mentioned, the sidebar for WC, will not show.
But I think your new problem now is not the sidebar and perhaps is the full width issue? If that is the case, that is a layout issue which you need to change in the WC’s loop start and loop end. You should read the docs on how to do this on their site.
Start with this -> http://docs.woothemes.com/documentation/plugins/woocommerce/
Forum: Plugins
In reply to: [WooCommerce] How do I change Out of Stock text?Looking at the code I don’t see any filters to do this and there are a lot of text with “out of stock” in the code so that means you probably need to translate it. Follow this guide for translations -> http://codex.wordpress.org/Translating_WordPress
Forum: Plugins
In reply to: [WooCommerce] Woocommerce EmailsTry this plugin -> http://wordpress.org/plugins/wp-mail-smtp/
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)@melpomene – what I asked you to do isn’t to say don’t use the sidebar plugin. It is to TEST if that is the reason. This is called troubleshooting. Without knowing the cause, how can you fix something right? So I was asking you to turn that off and use the remove code and see if on shop pages, the sidebar still appears or not…But if you’re afraid that by turning off the sidebar plugin, you may lose your settings then I am afraid I can’t help with that.
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)You should turn off that sidebar plugin and use the code I mentioned above to see if that combination works for you.
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)No it is NOT WC’s fault. The person who is building the site with WC SHOULD know what he/she is doing and it involves knowing actual code and how it works.
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)If it doesn’t work then that means it is not WC’s sidebar you’re trying to get rid of, its your other sidebars probably from your theme.
The code I gave you is specific to WC and will not work if your theme or any other plugin is adding the sidebar in. For those you need to look at the code from them to know how to remove it on shop pages.
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)Don’t be scare of your own site…best way to learn is just do it…if it breaks great, now you know better and learn from it…
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)It can go anywhere in the theme’s functions.php file…
Forum: Plugins
In reply to: [WooCommerce] I can't believe Woo have done this (Default Right side bar)Put this in your themes functions.php file.
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );When setting up the product you can change the product type to external. It is especially designed for affiliate type products.