Hi,
IE11 is not supported. It’s pretty standard these days in most modern themes that it’s not.
You can add some very basic polyfills that will make this work a little better but I don’t have any plans to support IE fully as it’s no longer a supported browser by most major players in the Web.
The hook for that polyfill can be added in a code snippet plugin: https://wordpress.org/plugins/code-snippets/
It would look like this:
add_filter( ‘kadence_add_ie11_support’, ‘__return_true’ );
Just note that this will add extra files to your page load.
I would suggest if you are getting a high percentage of users using IE11 that you add a IE11 specific notice that only shows for those users and explains that their browser is out of date and they need to update.
For example: https://browser-update.org/
I hope that helps!
Ben
Completely understand – thanks for the reply