// source --> https://saascharge.com/wp-content/plugins/social-divi/src/includes/social_divi_remove_et_icons.js?ver=6.9.4 
document.addEventListener("DOMContentLoaded", function() {
  const iconLists = Array.prototype.slice.call(
    document.getElementsByClassName("et-social-icons")
  );

  iconLists.forEach(function(list) {
    if (!list.classList.contains("social-divi-icons")) {
      list.remove();
    }
  });
});