12/19/2016 at 9:14 am
#404279
Keymaster
@ Darrin
Sorry about the delay… thank Comcast. My internet connection became glitchy. Going up and down making it impossible to do anything online. My Apologies!
One more minor edit…
Open the class.utility.php file found in the same folder as the retrieve file.
Search for this line:
public static function userPermitted( $visibility ) {
Then under this look for the first:
return ( current_user_can( 'connections_view_public' );
This should be line 612.
Change it to this:
return ( current_user_can( 'connections_view_public' ) || ! cnOptions::loginRequired() );
Now, in the retrieve file, change the code I gae you previoulsy to this:
if ( current_user_can( 'connections_view_public' ) || ! cnOptions::loginRequired() ) {
$visibility[] = 'public';
}
It is slightly different. Let me know if this works.
