$(document).ready(function () { // Remove 'Points: 0' in main game $('.text-bold').each(function() { if ($(this).text().trim().toLowerCase().startsWith("points:")) { $(this).remove(); } }); // Remove 'My Points: 0' in rewards marketplace const statusItemDiv = document.querySelector('.status_item[status_id="default"]'); if (!statusItemDiv) { return; } const myPointsH6 = statusItemDiv.querySelector('h6'); if (!myPointsH6) { return; } myPointsH6.remove(); //Remove 'Rewards Available' tab in rewards marketplace modal $('#reward-tab').parent('li').remove(); $('#wallet-tab').click(); })