Hi @handppy & @shiukik ,
First of all, sorry for the delayed response to this.
Our developer has created a custom code snippet to achieve your mentioned requirements. Kindly add the below provided code snippet in the “functions.php” file of your currently active theme.
The below code will hide the footer from the receipt template.
function removed_footer_receipt(){
if ( 'receipt' === wcdn_get_template_type() ) {
?>
<style>
.colophon-imprint{
display: none !important;
}
</style>
<?php
}
}
add_action( 'wcdn_head', 'removed_footer_receipt', 20 );
The below code you can use to hide the footer from all the templates i.e. invoice, delivery notes, and receipt.
function removed_footer_receipt(){
?>
<style>
.colophon-imprint{
display: none !important;
}
</style>
<?php
}
add_action( 'wcdn_head', 'removed_footer_receipt', 20 );
Kindly use the provided code snippets and let us know if it is working as expected or not.
Do let us know if you have any further queries.