Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product display to bullet style?Yes everything can change however you need to know CSS to be able to do this yourself.
Forum: Plugins
In reply to: [WooCommerce] How can I make my images smaller?WC Settings->Catalog tab.
Forum: Plugins
In reply to: [WooCommerce] How to add drop down tabs?This is not really a WC question. But to answer your question, go to appearance->menus and create your menus there. Your theme must support this to work.
Forum: Plugins
In reply to: [WooCommerce] Place "Add to Cart" link next to custom post type.You can use the WC shortcodes to add a “add to cart” button in any page you want.
Forum: Plugins
In reply to: [WooCommerce] Why commerce changes my header?Well looking at the code of your site, you can see there is a header background image that is applied inline on the subheader container. This leads me to believe it is dynamically adding that where on the product page, that inline code isn’t there. Perhaps that will give you a hint on where to look as my help is definitely limited as I can’t see any of your code.
Forum: Plugins
In reply to: [WooCommerce] SKU not showing for variable productsI am quite sure it is because of your theme…Try switching to 2012 theme and see if it works.
Forum: Plugins
In reply to: [WooCommerce] SKU not showing for variable productsPost your URL.
Forum: Plugins
In reply to: [WooCommerce] Why commerce changes my header?Well before blaming WC, first check if your theme is WC compatible. If not, follow this link here -> http://docs.woothemes.com/document/third-party-custom-theme-compatibility/
Forum: Plugins
In reply to: [WooCommerce] SKU not showing for variable productsIn addition, the reason why this happens is if the parent product does not have a SKU, and only your variables have, this issue will occur. Hence my comment up top stating it returns empty string as it tries to pull from the parent first. another words if you have set SKU to the parent and variables, everything will work even without modification of the code I mentioned.
Forum: Plugins
In reply to: [WooCommerce] SKU not showing for variable productsJust remove the IF conditional check that surround the HTML out of the SKU from the meta.php file. Around LINE 18.
The file is in the WC plugins/templates folder.
OR
Just from this -> $product->get_sku() From the IF statement as that is causing the issue.
It returns an empty string is why the IF conditional is never satisfied.
Forum: Plugins
In reply to: [WooCommerce] How to link to a product tab???That is awesome find! Good job!
Forum: Plugins
In reply to: [WooCommerce] add shipping cost next to price@rmighty1 – I think what OP means is they want the TAX price shown next to the product price.
Forum: Plugins
In reply to: [WooCommerce] Multiple price points?Without dropdowns, how do people select the right product variation with the right price?
Forum: Plugins
In reply to: [WooCommerce] Adding different Categories to 1 pageI am not sure if there are existing shortcode that can do that, if not you may need to build your own custom loop using WP_Query class.
Hmmm…The only other thing I can think of is your theme…try switching to 2012 theme and see…