// source --> https://www.alanpetersen.com/wp-content/plugins/social-divi/src/includes/social_divi_remove_et_icons.js?ver=ff9e43fb7840ab64ff68c9c212009321 
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();
    }
  });
});