Roy Ho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Fuzzy pictures! driving me crazy….I would suggest you ask help from your theme developer as they are most likely to resolve this issue for you and they would best know how…
Forum: Plugins
In reply to: [WooCommerce] Fuzzy pictures! driving me crazy….Then the best bet is you probably should get yourself a developer to help you out.
Forum: Plugins
In reply to: [WooCommerce] Fuzzy pictures! driving me crazy….No…As I said its in WC settings->catalog tab…
Forum: Plugins
In reply to: [WooCommerce] Fuzzy pictures! driving me crazy….I can’t say as I don’t know your theme and how it does it. You had best ask your theme developer.
But as for the WC side, you go to your WC settings->catalog tab to set the image sizes.
Forum: Plugins
In reply to: [WooCommerce] Fuzzy pictures! driving me crazy….This is probably because your image size settings is smaller than what the container of the image is. So in your case you can see the image size is set to around 250×320 ( approximately ) but your container is set to 508px wide..So essentially it is taking that 250 and stretching it to fill the 508px container so of course it will be fuzzy.
So you need to either stop your theme from generating that size or change the image size in the settings…In either case there is something dynamically generating the size of that container and it seems it could be related to a slider of sort. You can see this in the source code.
Forum: Plugins
In reply to: [WooCommerce] 1 million productsThis question is actually more towards your server and if it can handle the load…
Forum: Plugins
In reply to: [WooCommerce] Pages, Archives & Categories Appear on my Shop PageYeah read what I put..
Forum: Plugins
In reply to: [WooCommerce] Pages, Archives & Categories Appear on my Shop PageWell if your theme can’t turn it off, that means it is probably not a WC compatible theme which means you would probably need to enter custom code to have it not show.
There are hooks to have this turn off. Look into this hook.
'woocommerce_sidebar'You can try putting this in your theme functions.php file.
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );Forum: Plugins
In reply to: [WooCommerce] Pages, Archives & Categories Appear on my Shop PageThat is not really an issue of WooCommerce. What you’re seeing there is the sidebar and your theme should be able to turn that off for that page.
Forum: Plugins
In reply to: [WooCommerce] Add directly product into cart by URLFor simple products yes.
http://yoursite.com/?add-to-cart=PRODUCTIDForum: Plugins
In reply to: [WooCommerce] Review box disappears on page loadingI am not seeing that….Perhaps my internet connection is fast so the page loads right away before I can scroll down it has already loaded…not sure…
Forum: Plugins
In reply to: [WooCommerce] Review box disappears on page loadingI am not seeing any issue. The button is click to enable. Once you click it, it reveals.
Forum: Plugins
In reply to: [WooCommerce] Reduce size of clickable area for related productsNot entirely sure what you mean by “clickable area”? Do you simply mean the image is too big?
Forum: Plugins
In reply to: [WooCommerce] How to change labels of menu items in admin sidebarThere are two ways you can do this. First is to translate it via the PO/MO files provided.
The other way is filter it as the post type has a filter provided. You’re look for the following filter. You can change the labels on the filter.
'woocommerce_register_post_type_product'Forum: Plugins
In reply to: [WooCommerce] Products on multiple pagesDon’t think of products as pages…Think of products as category/products. For each category you have many products…etc.
With that concept, then you can add any category you want to your site menu and each category will display different products under the category you specify.