Hi Bora,
At present there is no direct way in the plugin to disable the Plugin step. I will be working in future on allowing super admins to customize the steps being displayed but am not sure of it’s timeline.
This is a part of Issue #33 which is a broader scope. For now it is possible to hide the Features page starting version 1.5.5.
You can achieve this by modifying below two files:
1. step3.php as below
<input id="ssw-next-stage" name="ssw_next_stage" type="hidden" value="ssw_finish"/>
2. ssw_breadcrumb_text.php as below:
/* echo '>'.$steps_name['step4'].'</span> -> <span ';
if(isset($finish)) {
echo 'class="sww-breadcrumb-selected"';
} */
NOTE: This will be overwritten with every new plugin update since it is kind of hack for now and not implemented as a setting for the plugin. You will have to perform above steps after every plugin update in order to hide Features page from your network.
Hi Bora,
I have released Site Setup Wizard v1.5.5. You can now hide the Plugin selection page by modifying the above mentioned code.
Please let me know if you still face any difficulties.
Best,
Neel