ikivela
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Filebase Download Manager] WP-Filebase Tree View not workingHi
I had same problem even I was logged as admin. File Tree View was stuck in “loading”.
I enabled “Late script loading” in wp-filebase settings. That helped.Forum: Plugins
In reply to: [Gwolle Guestbook] Custom security questionYes, quite like Ninja Forms. I don’t have any code right now, but basically I just added few html lines to add one input field & question. And in the class.gwolle_gb_entry.php I added lines to check valid input.
Forum: Plugins
In reply to: [Flickr Photostream] Display photos from group with tags filter ?Yes, I had same problem when plugin was updated. But then I made a change
$photos = $f->groups_pools_getPhotos($id, $tags, NULL, NULL, $extras, $max_num_photos, $page_num);it works again.
Forum: Plugins
In reply to: [Flickr Photostream] Display photos from group with tags filter ?Oh…it says that currently only one tag filter is supported:
http://www.flickr.com/services/api/flickr.groups.pools.getPhotos.html[flickr_group id=”your_grp_id” tags=”one_tag_only”]
Forum: Plugins
In reply to: [Flickr Photostream] Display photos from group with tags filter ?To get tag filtered photos from group, change line 221 in flickr-photostream.php to following:
$photos = $f->groups_pools_getPhotos($id, $tags, NULL, NULL, $extras, $max_num_photos, $page_num);Now you can use following:
[flickr_group id=”your_grp_id” tags=”your, tags”]