Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save xlplugins/800003a3d9cb2dda088d922d96f8b2be to your computer and use it in GitHub Desktop.

Select an option

Save xlplugins/800003a3d9cb2dda088d922d96f8b2be to your computer and use it in GitHub Desktop.
Create Klarna Element if not available on.
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