So, as far as JS is concerned, these were the offenders;
function essb_window562921788(oUrl,oService){window.open(oUrl,"essb_share_window","height=300,width=550,resizable=1");
vs
function essb_window2008318077(oUrl,oService){window.open(oUrl,"essb_share_window","height=300,width=550,resizable=1");
and
var cbParentOffset=$(this).parent().offset(),nonce=$('input#voting_nonce').val(),cb_data_votes={action:'cb_vote_counter',nonce:nonce,postid:'7163'},cb_data_score={action:'cb_add_user_score',nonce:nonce,cbCurrentVotes:parseInt(cbVoteAmount),cbNewScore:cbFinalX,postid:'7163'};
vs
var cbParentOffset=$(this).parent().offset(),nonce=$('input#voting_nonce').val(),cb_data_votes={action:'cb_vote_counter',nonce:nonce,postid:'5468'},cb_data_score={action:'cb_add_user_score',nonce:nonce,cbCurrentVotes:parseInt(cbVoteAmount),cbNewScore:cbFinalX,postid:'5468'};
and
if(!cb_checker){var cb_rating_c='7163';
}else{var cb_rating_c=cb_checker+',7163';
}
vs
if(!cb_checker){var cb_rating_c='5468';
}else{var cb_rating_c=cb_checker+',5468';
}
What you now have to do is figure out where this code originates. If it is in one (or more) files, you’ll have to exclude the file. If the code is inline, in the HTML, you can exclude using a string (e.g. “cb_rating_c”).
Hope this helps,
frank