/* NASCONDI HEADER */
function dmm_remove_header_on_checkout() {
if(is_checkout() && !is_wc_endpoint_url( 'order-received' )){ // Remove from checkout but show again on the thank you page ?>
<style>
header {
display:none;
}
</style>
<?php }
}
add_action( 'wp_head', 'dmm_remove_header_on_checkout');
/* NASCONDI FOOTER */
function dmm_remove_footer_from_checkout() {
if(is_checkout() && !is_wc_endpoint_url( 'order-received' )){ // Remove from checkout but show again on the thank you page ?>
<style>
footer {
display:none;
}
</style>
<?php }
}
add_action( 'wp_head', 'dmm_remove_footer_from_checkout');
Copia il codice nel file functions.php del tuo tema child attivo o utilizza il plugin Code Snippets