ShareThis problem
Using Jamroom
In your ShareThis module quota config section, do you have the allow facebook player box checked?
{if isset($_conf.jrNova_featured_artist_ids) && strlen($_conf.jrNova_featured_artist_ids) > 0}
{jrCore_list module="jrProfile" order_by="_profile_id asc" quota_id=$_conf.jrNova_artist_quota limit="4" search1="_profile_id in `$_conf.jrNova_featured_artist_ids`" search2="profile_active = 1" template="index_artists_row.tpl"}
{elseif isset($_conf.jrNova_require_images) && $_conf.jrNova_require_images == 'on'}
{jrCore_list module="jrProfile" order_by="_profile_id random" limit="4" quota_id=$_conf.jrNova_artist_quota search1="profile_active = 1" template="index_artists_row.tpl" require_image="profile_image"}
{else}
{jrCore_list module="jrProfile" order_by="_profile_id random" limit="4" quota_id=$_conf.jrNova_artist_quota search1="profile_active = 1" template="index_artists_row.tpl"}
{/if}
{if isset($spotlight) && $spotlight == 'yes'}
<div class="outer mb8">
<div class="pbpinner" style="padding-left:0;">
<h3 class="pbp12">Random Artists</h3>
{if isset($_conf.PunkBP_spotlight_ids) && strlen($_conf.PunkBP_spotlight_ids) > 0}
{jrCore_list module="jrProfile" order_by="_profile_id asc" limit="4" search1="_profile_id in `$_conf.PunkBP_spotlight_ids`" search2="profile_active = 1" search3="profile_quota_id in `$_conf.PunkBP_artist_quota`" template="index_spotlight_artist.tpl"}
{elseif isset($_conf.PunkBP_require_images) && $_conf.PunkBP_require_images == 'on'}
{jrCore_list module="jrProfile" order_by="_profile_id numerical_desc random" limit="4" quota_id=$_conf.PunkBP_artist_quota template="index_spotlight_artist.tpl" require_image="profile_image"}
{else}
{jrCore_list module="jrProfile" order_by="_profile_id numerical_desc random" quota_id=$_conf.PunkBP_artist_quota limit="4" template="index_spotlight_artist.tpl"}
{/if}
</div>
</div>
{/if}