Webnetwork used to have a bug on it’s profile-completion feature.
Bug: Even if you set that profile must be completed after registration on admin, user can still navigate to Webnetwork’s inner pages even if profile is incomplete.
Solution: This error should be resolved in the next version of Webnetwork, however, if you want to get ahead and grab a fix of this issue, please follow the steps below:

1. Connect to your server-files via FTP.
2. Modify /engine/pages/registration_complete.php file and find this line:
1.

2. if(strtolower($force_profile) == "on")
3. {
4. $this->_page_name = ‘create_profile’;
5. $this->load_page(‘create_profile’);
6. return;
7. }

…replace it with:
1.

2. if(strtolower($force_profile) == "on")
3. {
4. header("location:".$application->config(‘root_host’)."index.php?page=create_pr ofile");
5. die;
6. }

Hope that helps.