DesignerEthan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] No featured images on products, help!What theme are you using and have you tried deactivating all other plugins to see if there is some type of conflict between woocommerce and something else?
Forum: Plugins
In reply to: [WooCommerce] Procuct Page is emptyCan you share a link to where you having this issue?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Minimum Price checkI have written a plugin for this. Still waiting for it to be added to the wordpress repo but for now you can download it here.
http://ethanellis.co.za/plugins/minimum-order-value.zip
Its a very simple solutions. Basically just adds an input for a price and message.
You will need to keep in mind 2 things. Firstly the total you set does not include shipping. So for example if you set it to $10 they need to have $10 plus what ever the shipping is going to cost. Second you must write your own message.
Let me know how it goes and if you have any issues.
Forum: Plugins
In reply to: [WooCommerce] Product image- Actual size not showingHey hopefully I can help.
Go to your woocommerce settings and then to the catalog settings (should be http://www.crazeofart.com/wp-admin/admin.php?page=woocommerce_settings&tab=catalog)
At the bottom of that page you have image size options. Change the size there and make sure you don’t have “Hard Crop” ticked. This will change the image size and not cut it.
“After changing these settings you may need to regenerate your thumbnails.” http://wordpress.org/plugins/regenerate-thumbnails/
Forum: Plugins
In reply to: [WooCommerce] External imagesThis is not actually a woocommerce related thing. No featured image on post or products can use an image from a url.
I did a quick google and there is a plugin that seems like it does what you requesting.
http://epicplugins.com/external-url-link-to-featured-images/
Other option is to use a custom field and edit the theme / action to use that instead. This would require some custom development.
Forum: Plugins
In reply to: [Testimonials by WooThemes] How do i query by testimonial CategoryI’m not sure why you would use a custom field for a category rather then use the default category.
You can adjust the query used by filtering the query. Here is a snippet you can expand on to get your desired result.
Currently that snippet just takes the testimonials and displays them in a random order. You can remove the “‘orderby’ => ‘rand’,” piece and edit the “‘category’ => 0” section to use your category ID. So if you using the default categories with the testimonials and the cat ID is 42 you simply change ‘category’ => 0 to ‘category’ => 42.
Hope that helps / works.