Attached to the bottom of this post is an example Entry Form Template which also includes the required code for various SOBI2 Plugins to be displayed on individual tabs.
It is easy to delete what you do not need from this all-inclusive template.
You will only need to include the tabs of the Plugins which you are actually using on your site.
Delete the unneeded tabs (9 tabs is too many to display properly for good usability).
Edit the tab text such as "6. Download Plugin" to read as you desire.
You can combine the code for various plug-ins to display on one tab.
Download Plugin
<!-- Tabs - Start Tab 6 - Download Plugin -->
<?php $myTabs->startTab("6. Download Plugin","SixthTabLabelText"); ?>
<table width="100%" border="0" cellpadding="5">
<tr>
<td colspan="2"><strong>Download Plugin Description and Instructions</strong><br />
Add some text which explains what the users can do with this.<br />
More text . . . <br />
Note: Files will be reviewed before your entry is published.<br /><br />
</td>
</tr>
<tr>
<td width="200"><div align="right"><?php echo $fields['sobi_download_plugin']['label']; ?> </div></td>
<td><?php echo $fields['sobi_download_plugin']['field']; ?></td>
</tr>
</table>
<br />
<?php $myTabs->endTab(); ?>
<!-- Tabs - End Tab 6 -->
Featured Listings Plugin
<!-- Tabs - Start Tab 7 - Featured Listings Plugin -->
<?php $myTabs->startTab("7. Featured Listings Plugin","SeventhTabLabelText"); ?>
<table width="100%" border="0" cellpadding="5">
<tr>
<td colspan="2"><strong>Featured Listings Plugin Description and Instructions</strong><br />
Add some text which explains what the users can do with this.<br />
More text . . . <br />
Note: Featured Listings will be reviewed before your entry is published.<br /><br />
</td>
</tr>
<tr>
<td width="150"><div align="right"><?php echo $fields['featured']['label']; ?> </div></td>
<td><?php echo $fields['featured']['field']; ?></td>
</tr>
</table>
<br />
<?php $myTabs->endTab(); ?>
<!-- Tabs - End Tab 7 -->
Gallery Plugin
<!-- Tabs - Start Tab 8 - Gallery Plugin -->
<?php $myTabs->startTab("8. Gallery Plugin","EighthTabLabelText"); ?>
<table width="100%" border="0" cellpadding="5">
<tr>
<td colspan="2"><strong>Gallery Plugin Description and Instructions</strong><br />
Add some text which explains what the users can do with this.<br />
More text . . . <br />
Note: Gallery images will be reviewed before your entry is published.<br /><br />
</td>
</tr>
<tr>
<td width="150"><div align="right"><?php echo $fields['sobi_gallery_plugin']['label']; ?> </div></td>
<td><?php echo $fields['sobi_gallery_plugin']['field']; ?></td>
</tr>
</table>
<br />
<?php $myTabs->endTab(); ?>
<!-- Tabs - End Tab 8 -->
Media Plugin
<!-- Tabs - Start Tab 9 - Media Plugin -->
<?php $myTabs->startTab("9. Media Plugin","NinthTabLabelText"); ?>
<table width="100%" border="0" cellpadding="5">
<tr>
<td colspan="2"><strong>Media Plugin Description and Instructions</strong><br />
Add some text which explains what the users can do with this.<br />
More text . . . <br />
Note: Media files will be reviewed before your entry is published.<br /><br />
</td>
</tr>
<tr>
<td width="150"><div align="right"><?php echo $fields['sobi_media_plugin']['label']; ?> </div></td>
<td><?php echo $fields['sobi_media_plugin']['field']; ?></td>
</tr>
</table>
<br />
<?php $myTabs->endTab(); ?>
<!-- Tabs - End Tab 9 -->
Note: The existing Media Plugin RC v1.2 has a minor conflict with the Gallery Plugin.
They both use "sobi_gallery_plugin" so they cannot both be linked to the entry form at the same time.
I made a couple minor changes to the Media Plugin so it uses "sobi_media_plugin" instead.
It appears to be working properly.
Please test the attached Media Plugin RC v1.2a.
Also attached is the v4 tabbed Entry Form Template with the above plugin tabs added.
It will need to be edited to work properly with your plug-ins and tabs.