Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] error message "No products found which match your selection."@Silarose – I am not sure if you’re asking about your original issue or are you now talking about something else? One step at a time. Have you gotten the shop page to load the products you have?
Forum: Plugins
In reply to: [WooCommerce] error message "No products found which match your selection."@silas – Shop page can be any page you want. Just make sure the page has no other ecommerce shortcode within and then go to your WooCommerce settings->pages tab and select the page you want to be your shop page from the dropdown.
Forum: Plugins
In reply to: [WooCommerce] Upgraded to 2.0.12 and products css layout is poor and flatAgain, you have to follow the link I provided and use that as your jump off point.
To get straight to the point, theme that supports pre 2.0 of WC will NOT work with 2.0+… So either you modify your theme to work with 2.0+ or you get a theme that already has support for it. This is something you need to do.
Forum: Plugins
In reply to: [WooCommerce] Upgraded to 2.0.12 and products css layout is poor and flatWell if you have not updated since 2011 I am going to assume you were using a pre 2.0 version which is significantly different. So I will refer you to this link. http://docs.woothemes.com/document/woocommerce-1-6-6-2-0-plugin-and-theme-compatibility/
Forum: Plugins
In reply to: [WooCommerce] Grid VewForum: Plugins
In reply to: [WooCommerce] Login and Coupon links on checkout pages lead no whereHave a look at this link perhaps it is related to your issue.
http://wordpress.org/support/topic/jquery-error-has-not-method-simpleplaceholder?replies=1Forum: Plugins
In reply to: [WooCommerce] Grid VewYes anything is possible…I believe there is already a free plugin available that lets you switch from grid to list via JS. Please search for it in the plugins list.
Forum: Plugins
In reply to: [WP eCommerce] echo product weight with PHPThis is what you want.
$meta = get_post_meta( $product_id, '_wpsc_product_metadata', true ); $weight = ! empty( $meta['weight'] ) ? $meta['weight'] : 0; echo $weight;Forum: Plugins
In reply to: [WooCommerce] How to set an expiration time of the product?I don’t believe there is an option to do this out of the box. Try looking for a plugin that does this.
Forum: Plugins
In reply to: [WooCommerce] Can I rename WC cookies?I don’t believe you can and doing so will not give you better security.
Forum: Plugins
In reply to: [WooCommerce] Productpage as HomepageOr you can do something like this..
$product = get_product( $product_id );$product is an object that contains all information and methods you need to generate the single products information. You can put this in the home.php replacing the loop.
Forum: Plugins
In reply to: [WooCommerce] No Checkout PageNot really as it will just tell you if certain functions failed or out of memory errors…etc…
Forum: Plugins
In reply to: [WooCommerce] Productpage as HomepageOr if that still doesn’t work for you. You make a duplicate of your index.php and name it home.php. Then open up the WC single products template and copy the code from that file and pasted it in your home.php replacing the loop that was once in there.
Put your settings->reading frontpage back to default which is nothing selected. WordPress will now use your home.php template when your site first loads.
Of course you will need to adjust the code abit so it will pull in the product that you want but shouldn’t be too hard.
If this is all too much for you to do, then I would suggest you have a developer to help you do it.
Forum: Plugins
In reply to: [WooCommerce] No Checkout PageBlank page usually means a PHP error. This could be a number of things. The best way to know is to look at your server PHP logs to see what it says.
Forum: Plugins
In reply to: [WooCommerce] Productpage as HomepageUse:
[add_to_cart id=""]For the add to cart button.