Paste Function Broken

Can you please try clearing out your cache and cookies using the guide below? http://en.support.wordpress.com/browser-issues/#clear-your-cache-and-cookies Also, please make sure your browser is updated to the most recent version: http://browsehappy.com Then, finally try testing on browsers like Google Chrome and Firefox. Also can you check if copying works in Text Mode or not ? Update : … Read more

How to solve react dom ‘removeChild’ on Node error while google translate extension is on and selecting any core block [closed]

This cannot be fixed from the WordPress side, it requires changes from the Google Translate team to work with WordPress’ block editor. Only Google can do that. If you need to translate the content of a post it can’t be done from inside the editor using a browser extension unless that browser extension was specifically … Read more

Suddenly, all links in #content div are not clickable, but I don’t see any z-index bug? [closed]

That’s easy. You have the following CSS rule: a.themify_lightbox, .module-image a, .module-gallery a, .gallery-icon, .themify_lightboxed_images .post a, .themify_lightboxed_images .type-page a, .themify_lightboxed_images .type-highlight a, .themify_lightboxed_images .type-slider a { pointer-events: none; cursor: default; } This rule applies because body has a class themify_lightboxed_images. pointer-events: none; is the last thing you want on your links. This basically means … Read more

Is this a WordPress security bug?

You’re misinterpreting the is_admin() function. It’s not a tag to check whether or not the user is an admin, it’s a template tag to check if you’re on an admin page. From the Codex: This Conditional Tag checks if the Dashboard or the administration panel is being displayed. This is a boolean function, meaning it … Read more