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