12/16/2016 at 2:02 pm
#403960
Keymaster
@
In the retrieve file search for this line:
if ( current_user_can( 'connections_view_public' ) ) $visibility[] = 'public';
If should be line 1109.
Change it to this:
if ( current_user_can( 'connections_view_public' ) || $instance->options->getAllowPublic() ) {
$visibility[] = 'public';
}
Let me know when you made the edit.
