Sprazer
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Social Stream] import facebook posts as wp postsIf you use the feature “get Facebook stream as JSON-object instead of HTML”.
You could loop through the posts and style them as a masonry grid.<?php echo do_shortcode('[fb_social_stream]');?> <script type="text/javascript"> $(function(){ if(typeof fbss_data !== "undefined"){ fbss_data.forEach( function( item ) { /* do stuff here */ }); } }); </script>Forum: Plugins
In reply to: [Facebook Social Stream] Json image sizeNo problem you’re helping me a lot with by implementing things I ask for 🙂
Well I’d like the featured image that facebook show when you share a link.
You’re grabbing the image now, but just the 130×130 thumbnail version.I don’t even know if this is possible.
Forum: Plugins
In reply to: [Facebook Social Stream] NOTHING APPEARS…The name is case sensitive you know.
https://www.facebook.com/NameOfPage=> NameOfPageForum: Plugins
In reply to: [Facebook Social Stream] Nothing in wigget areaI think that text widgets doesn’t support shortcodes by default?
You may have to add support for that.Try to add this into your functions.php of your theme:
add_filter(‘widget_text’, ‘do_shortcode’);Forum: Plugins
In reply to: [Facebook Social Stream] Json image sizeOh, this does just work for type=”photos”?
Can’t it be done for type=”link”?Thanks again!
Forum: Plugins
In reply to: [Facebook Social Stream] Json image sizeThanks!
Forum: Plugins
In reply to: [Facebook Social Stream] Json image sizeThank you!
You are the best! Love this plugin already!Forum: Plugins
In reply to: [Facebook Social Stream] Return as JSON objectThank you!
Will try it out instantly and write an review!