Replace this:
<?php if( osc_user_website() !== '' ) { ?>
with:
<?php $catsList = array(1, 9, 101, 102);
if( osc_user_website() !== '' && in_array(osc_item_category_id(), $catsList)) { ?>
Populate array $catsList with all the categories Id's for what you want to show website.
Regards