You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I saw you have fixed this issue back in 2019 but appears that the issue is still around and it completely ruined my Wordpress page made with DIVI.
This HTML element:
was spread all over the
tags and everywhere else, so it became complete disaster until I noticed it. No way of removing it because I have to recreate the page.
Please fix this issue!
Workaround which is not very good because of performance overload but nothing else came up to mine mind is:
document.addEventListener('DOMContentLoaded', function() {
// Select all elements that have "simple-translate" as part of their class name
const elementsToRemove = document.querySelectorAll('[class*="simple-translate"]');
// Loop through each element
elementsToRemove.forEach(function(element) {
// Move the child nodes of the element to its parent before removing the element itself
while (element.firstChild) {
element.parentNode.insertBefore(element.firstChild, element);
}
// Remove the element itself (without its children)
element.remove();
});
});
</script>
The text was updated successfully, but these errors were encountered:
Hi, I saw you have fixed this issue back in 2019 but appears that the issue is still around and it completely ruined my Wordpress page made with DIVI.
This HTML element:
was spread all over the
tags and everywhere else, so it became complete disaster until I noticed it. No way of removing it because I have to recreate the page.
Please fix this issue!
Workaround which is not very good because of performance overload but nothing else came up to mine mind is:
The text was updated successfully, but these errors were encountered: