Created
May 29, 2026 11:53
-
-
Save xlplugins/800003a3d9cb2dda088d922d96f8b2be to your computer and use it in GitHub Desktop.
Create Klarna Element if not available on.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'wp_footer', function() { | |
| if ( ! is_product() && ! is_cart() && ! is_checkout() ) { | |
| return; | |
| } | |
| ?> | |
| <script> | |
| document.addEventListener('DOMContentLoaded', function() { | |
| if (!document.getElementById('kec-pay-button')) { | |
| var el = document.createElement('div'); | |
| el.id = 'kec-pay-button'; | |
| el.style.display = 'none'; | |
| document.body.appendChild(el); | |
| } | |
| }); | |
| </script> | |
| <?php | |
| } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment