mmaedler
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Single Page Purge doesn't workSo then it would be great, if you’d tell me what information you need 🙂
Forum: Plugins
In reply to: [WP REST API (WP API)] Filter by Post DateI fixed the issue by adding a custom filter:
// Allow datequery in /posts filter add_filter( "json_query_vars", function ($query_args) { return array_merge($query_args, array("date_query")); });which I hope is fine.
I think it’s not a workaround, but the way you include the galleries starting from ngg v2 And above.
The short codes you are using are the old format for ngg < version 2 which are kept for legacy reasons. That means the might get dropped anyways in the future.Besides that, for me both the new and old version of the short codes are working, what doesn’t really help you, but I just wanted to let you know (maybe the reason for the short codes not working for you is an incompatibility with another plugin I haven’t installed).
Cheers!
According to that page — http://www.nextgen-gallery.com/nextgen-gallery-shortcodes/ — you may want to try the new shortcodes, e.g.
[ ngg_images gallery_ids="29" display_type="photocrati-nextgen_basic_imagebrowser" ]to display the imagebrowser. Hope that helps!