Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product Page Alignment Off | Twenty Ten themeAdd something like this at the end of your theme style.css
.product .entry-summary { clear:none; }If that is doesn’t work “not specific enough”, then use this:
.product .entry-summary { clear:none !important; }Forum: Plugins
In reply to: [WooCommerce] Product Page Alignment Off | Twenty Ten themeCompatibility means in function and not necessarily styling. Because there is no telling how you setup your content for WC to accommodate every type of situations. Looking at your site, you just need to adjust the CSS in terms of the left and right side containers.
Also if you’re going to be using a default theme, I would recommend 2012 instead of 2010.
Forum: Plugins
In reply to: [WooCommerce] Compatibility IssuesSounds like a theme issue. Try switching your theme to 2012 theme and re-test.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce shop page line spacing issueIt works…I already tried it on your site…If it didn’t work for you, it usually means you didn’t do it correctly in the correct spot or you have a CSS specificity issue.
Forum: Plugins
In reply to: [WooCommerce] How to link to a product tab???It works, I tested it…If you want help you should really post the URL in question.
Forum: Plugins
In reply to: [WooCommerce] How to link to a product tab???It depends on your theme…
Forum: Plugins
In reply to: [WooCommerce] How to link to a product tab???It doesn’t jump because the review tab is not initially shown…It is hidden on page load. So you would probably need JS to help you achieve this.
Something like this:
if ( location.href.match(/#tab-reviews/g) !== null ) { jQuery( '#tab-reviews' ).show(); jQuery( 'li.reviews_tab a' ).trigger('click'); }Forum: Plugins
In reply to: [WooCommerce] How to link to a product tab???I believe it does work as in it does “jump” to the section but the tab just doesn’t switch is what you mean?
Forum: Plugins
In reply to: [WooCommerce] WC product searchPlease use tools such as firebug or chrome tools to help you determine what CSS and file is associated with the area you want to modify.
Forum: Plugins
In reply to: [WooCommerce] change width of product category dropdown in sidebarYou can just set a width for the select field in your CSS. Something like this should do:
#dropdown_product_cat { width:220px; }Forum: Plugins
In reply to: [WooCommerce] WC product searchIf you think it is ugly, then you should style it yourself via CSS.
Forum: Plugins
In reply to: [WooCommerce] Enable Add To Cart for specific products Not for all.Sorry, my solution was for your main menu, not your sidebar as I thought you’re referring to your main menu.
Forum: Plugins
In reply to: [WooCommerce] AuthenticationNo you don’t add the shortcode there. Add a regular LINK for the redirect.
Forum: Plugins
In reply to: [WooCommerce] Removing Price FilterSounds if you have other issues going on. Do your other widgets allow you to disable? Try dragging in to the same sidebar a regular text widget. Then try to drag that out and see if it remains in there.
Forum: Plugins
In reply to: [WooCommerce] Related productsPlease have a look inside the WC plugins folder and look under templates folder. In that folder you will find all the necessary template files that generates most of WC including the related products part.
Then you can copy it out and put into your theme folder so your changes will not be affected by updates. Here is a link that will show you what to do. http://docs.woothemes.com/document/template-structure/