Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Using Woocommerce.css in Different Child Theme FolderActually the CSS you saw is just minified/compressed…To get the uncompressed version, you need to open up the woocommerce.less file. But be warn as there are imports in there so it is better to use a less compiler to compile it for you.
Forum: Plugins
In reply to: [WooCommerce] Using Woocommerce.css in Different Child Theme FolderWhat I stated will work and there is no reason why it shouldn’t. The logic is simple. Turning off WC styles means any WC related items will have no styles at all other than what your theme has for it. Then copying the WC styles from the plugin to your theme’s CSS will enable them to be used again where you can modify without worrying about WC updates…
So if it’s not working for you, you’re doing something wrong.
Forum: Plugins
In reply to: [WooCommerce] Version 2.0.12 "Nothing Found" upon CheckoutHmmm…then sorry thats all I can think of…
Forum: Plugins
In reply to: [WooCommerce] Version 2.0.12 "Nothing Found" upon CheckoutGo to your woocommerce settings->pages and see if the checkout page is set.
Forum: Plugins
In reply to: [WooCommerce] Version 2.0.12 "Nothing Found" upon CheckoutTry going to settings->permalinks and click save twice…re-test…
Forum: Plugins
In reply to: [WooCommerce] Products Menu missing in Control PanelBest way to test is turn off all plugins except woocommerce and turn each one on one by one and re-test after each one to see which one is competing against woocommerce…
Forum: Plugins
In reply to: [WooCommerce] Products Menu missing in Control PanelBecause the plugin is using a add menu page order number that is the same as woocommerce so it overrides it and thus removing the woocommerce page.
Forum: Plugins
In reply to: [WooCommerce] Products Menu missing in Control PanelIf you switch to another theme like 2012 default theme does it show up?
Forum: Plugins
In reply to: [WooCommerce] Adjustint li in ul.productsHere is an even better solution where you don’t need to copy the template.
add_filter( 'post_class', 'addspan' ); function addspan( $classes ) { if ( is_shop() ) { $classes[] = 'span4'; return $classes; } }Forum: Plugins
In reply to: [WooCommerce] Adjustint li in ul.productsOr…it may be possible to filter it by post_class like.
add_filter( 'post_class', 'yourfunction' );Not sure about this one but worth a try and you may need to target the post type since post_class is used in different places…
Forum: Plugins
In reply to: [WooCommerce] Adjustint li in ul.productsOk you can copy the file content-product.php from your WC plugins folder within templates and paste into your theme folder woocommerce folder templates keeping the same structure.
Then you can modify the content-product.php to your liking. The li tag is in that file.
Forum: Plugins
In reply to: [WooCommerce] Adjustint li in ul.productsAnd where is this UL list being generated from?
Forum: Plugins
In reply to: [WooCommerce] Microdata problem on my ecommerce.I am still seeing 88 errors and 12 warnings on your page.
Forum: Plugins
In reply to: [WooCommerce] Adjustint li in ul.productsWhat are you trying to do?
Forum: Plugins
In reply to: [WooCommerce] Microdata problem on my ecommerce.I think before you worry about the microdata you should validate your page first because you have 100s of errors on that page.