Klaus
Forum Replies Created
-
Forum: Plugins
In reply to: [User Switching] seems to affect wp_editor()Sorry, but I think the problem was something completely different.
I cannot reproduce this now.Thanks for your help and this awesome plugin!
Forum: Plugins
In reply to: [User Switching] seems to affect wp_editor()Thank you for the fast reply.
I’ll have to do some more research then – I’ll let you know via this thread.thanks
KlausForum: Plugins
In reply to: [WP Supersized] Disable on iPad, Tablet, MobileI use the https://detectmobilebrowsers.com/ and my hack is a change of the WPSupersized.php:
Add an if within the addHeaderCode()-function after “<script type=”text/javascript”>” like this:
if(!jQuery.browser.mobile) {
And close it right before “</script>”
An admin-option would be nice ??
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] Inline images in larger size@shogun.se:
The problem are the img-references – it’s like this one:
https://platform.ak.fbcdn.net/www/app_full_proxy.php?app=45439413586&v=1&size=z&cksum=5324ce7d4f39ce6e5ec1b6dde2498547&src=http%3A%2F%2Ft3sjalvskydd.se%2Fwp-content%2Fuploads%2Fphoto.JPG1_.jpgMy regex only calls for URLs like this:
https://photos-a.ak.fbcdn.net/hphotos-ak-ash3/5484_572126456138317_1135476019_s.jpgI haven’t seen such image-refs yet. Seems that one might be able to extract the last portion of the URL and urldecode() it — in this example the https://t3sjalvskydd.se/wp-content/uploads/photo.JPG1_.jpg …
Maybe Lakshmanan can incorporate this too?
Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] Inline images in larger size@lakshmananphp:
Nice. If you need an beta-tester, then you can send me your pre-release.@shogun.se:
Strange. I’ve tested it and it is working for me. You should see it because the css-class “replaced” is added to the img-tag.
Can you provide the facebook-page-id to verify this?Forum: Plugins
In reply to: [FBF Facebook page Feed Widget] Inline images in larger size@shogun.se:
I did not add this to the shortcode-Version, only to the Widget-Version; it’s just a hack so far ??
But you may try this: https://pastebin.com/deKSPXbD (but beware, I did not tested it)@lakshmananphp:
Afaik facebook pre-generates those sizes and they are not exact – they are just boundaries.
And I don’t know if those images are always present if the small version from the rss-feed is there.So the question is, do you want to proceed based on this hack or do you want to build a more flexible solution?
I could think of the possibility that one grabs the largest image, stores/ caches it and process it locally to a customizeable size.
This simple solution is currently the one I’m happy with ??