Matic
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Hide shipping options code not working after update to 2.3Tnx muddyfeet! I had the same problem, resolved with:
WooCommerce > System Status > Tools > WC Transients – Clear TransientsAnd using updated code from http://docs.woothemes.com/document/hide-other-shipping-methods-when-free-shipping-is-available/ of course! ;
Forum: Fixing WordPress
In reply to: WordPress Media Library loading full size images for thumbnailsttran14: what is your “medium size” set in Settings > Media?
I have exact same issue and mine medium image size is set to the default 300 x 300 and images are generated on filesystem:
-rw-r--rw- 1 www-data www-data 9325 May 27 02:24 image1-150x150.jpg -rw-r--rw- 1 www-data www-data 25630 May 27 02:24 image1-300x225.jpg -rw-r--r-- 1 www-data www-data 593980 May 21 23:04 image1.jpgbut full size image is still used, check screenshot:
https://www.dropbox.com/sh/ot2hs97ds4hasqz/4YiAWrciBX/Wordpress-ImagePicker-ImageSize.jpgI noticed that many have this issue since 3.5 and found only temporary solution (which is not best in my case)): http://ww.wp.xz.cn/support/topic/feature-req-media-view-default-view-image-size?replies=9
Forum: Fixing WordPress
In reply to: Media Library Manager loading full size images+1 on this
Temporary solution is here: http://ww.wp.xz.cn/support/topic/feature-req-media-view-default-view-image-size
Forum: Requests and Feedback
In reply to: feature req: Media View: Default View & Image Size+1 on this
I am having the EXACT same issue and my images get always loaded in full size and not medium which is set to 300 x 300 which I think is the default value.BIG Thanks for the temporary solution but in my case I often do check all images and browsing them is terrible.
Forum: Fixing WordPress
In reply to: convert all posts into woocommerce products?I am also interested in this if someone has some solution.
I am moving current site loomp.si where we are using posts to present the products to woocommerce.
emanweb, thanks again! Your suggestion woks like a charm, but it would be much better if this would work “out of the box” and not have to think about it…
There are also some other limitation with this plugin:
– character like “?” is in URL converted to “%3F”; using rquest URL like “/something%3F” does not work; it has to be in “/something?” to work
– same goes for special characters like “čćžšđ” which can now be used in also URL
I am having similar issue here:
Request: /Reference/Objekt+na+morju
Destination: http://kek.si/reference/objekt-na-morju/Full request URL at the momment is: http://kek.izdelava-spletne-strani.com/Reference/Objekt+na+morju (this site is not yet on prod. env., but it’s going to be soon and that URL will be than: http://kek.si/Reference/Objekt+na+morju)
This issue is one of the reasons I did not move to the prod. env. with this site. I will try emanweb solution (thanks emanweb).
I really like this plugin, easy to use and I am glad that it works in MultiSite Env. This plugin is suppose to be still supported by developer:
http://ww.wp.xz.cn/support/topic/this-plugin-is-still-being-supported?replies=2Forum: Fixing WordPress
In reply to: Custom field image to Featured image issueI doubt you’ll get some plugin to do that (convert custom field image to featured image) but I think you can do that very easily with SQL (in phpmyadmin for example):
UPDATE wp_postmeta SET meta_key = '_thumbnail_id', WHERE meta_key = 'image';*NOTE: backup your database first!