Plugin data shared in Multisite

You are asking a question that is specific to a plugin and not WordPress. How the plugin functions depends entirely on the plugin author’s design. Reading the article above, sure the plugin works in WP multsite, but as the author mentions extra works needs to be done to share that content among other mulisite sites. … Read more

Searchable database of members using multiple criteria / filters

I just had the same problem, and solved it using the Participants Database plugin. The pdb_list shortcode supports filters, e.g. [pdb_list filter=”state=NY”]. You can generate any shortcodes from a PHP script by running a script with the do_shortcode() function, like this: echo do_shortcode(‘[pdb_list filter=”state=NY”]’); Now you have all the building blocks you need to generate … Read more