Skip to content

Instantly share code, notes, and snippets.

@mhackersu
Forked from shivapoudel/functions.php
Created November 26, 2018 20:50
Show Gist options
  • Save mhackersu/b96885c858b8f63c06926a42a2f92087 to your computer and use it in GitHub Desktop.
Save mhackersu/b96885c858b8f63c06926a42a2f92087 to your computer and use it in GitHub Desktop.
WooCommerce - Allow rendering of checkout and account pages in iframes
<?php // Do not include this if already open!
/**
* Code goes in theme functions.php.
*/
add_action( 'after_setup_theme', 'wc_remove_frame_options_header', 11 );
/**
* Allow rendering of checkout and account pages in iframes.
*/
function wc_remove_frame_options_header() {
remove_action( 'template_redirect', 'wc_send_frame_options_header' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment