Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Blank White Page on booking page once a dayMost likely cause is that your site is running out of memory. Other than that is a PHP error. So first check your memory by going to WC settings system status and see if you have atleast the recommended memory limit.
If you’re ok there, then I would suggest you looked into your PHP error logs to see what failed.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.1 Release Date? (and is it responsive?)This is a community support forum which means users help each other. It is not monitored by WooThemes. If you want faster support, you need to post your question on the support forums on WooThemes instead of here.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce on iPhone@bloohair – what you’re seeing is a compressed version of the CSS. Nothing wrong with that. If you want to see the “human readable” version, look for the LESS files. Those files contain the uncompressed CSS code.
Forum: Plugins
In reply to: [WooCommerce] Add to cart button with animation.If you turned it on and it still doesn’t work in your product category pages, then I have to suggest you try 2012 theme. You will see it works there.
Forum: Plugins
In reply to: [WooCommerce] Add to cart button with animation.WC has ajax add to cart. Did you turn that on?
Forum: Plugins
In reply to: [WooCommerce] admin-ajax.php slow server response timeHow did you determined that it was called 20 times on every page load?
No it won’t…
Forum: Plugins
In reply to: [WooCommerce] How to completely disable Reviews Tab@tevya – don’t draw to your own conclusions. I am not asking you to use this method or that method. I am also not comparing which method is better. I am simply stating the fact it exists and it works.
Forum: Plugins
In reply to: [WooCommerce] Placeholder image for a specific categoryYou would need to modify product-image.php file template. Copy it to your themes woocommerce/single-product/ folder.
On line 37 is where you want to start editing. Replace the entire line on 37 with something like this (un-tested).
// do this if product is in specific category if ( has_term( 'my_cat', 'product_cat', $post->ID ) ) { echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<img src="%s" alt="Placeholder" />', get_template_directory_uri() . '/images/my_product_placeholder.jpg' ), $post->ID ); } else { echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<img src="%s" alt="Placeholder" />', woocommerce_placeholder_img_src() ), $post->ID ); }You can change “my_cat” to the slug name of the category you want OR even the cat ID. Also change the image path to your liking above.
Forum: Plugins
In reply to: [WooCommerce] Need help with styling product page@molinnov – that is because in your CSS somewhere you have line-height set to 1px for your h3 tags. Not really sure why it is set to 1px. You need to change that to something like 1.5em instead of 1px.
Forum: Plugins
In reply to: [WooCommerce] Lastest Woocommerce Update wont allow attributes?Hmmm I just tested it on my end resaving some of the attributes and I am not seeing any issues.
Were any of your products imported?
Forum: Plugins
In reply to: [WooCommerce] How to check if I'm on my shop page?is_shop() should definitely work for the default shop archive unless you have changed it to something else in your WC settings.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Order Status not UpdatingYou won’t get much response here if the payment gateway you’re using is not apart of WC. If it is developed by a 3rd party, you need to contact them for assistance.
Forum: Plugins
In reply to: [WooCommerce] Placeholder image for a specific categoryPerhaps I am not understanding the reason for doing this…If you want a specific image for a set of products within a certain category, why not just upload the image you want instead of using placeholder fallback?
Forum: Plugins
In reply to: [WooCommerce] Lastest Woocommerce Update wont allow attributes?Did you make sure each and every variation has a price set for it?