Hello @imran1133,
Thanks for your response.
Please create a custom plugin as the reference below to hide it.
<?php /** * Your Addon * * @wordpress-plugin * Plugin Name: Your Addon * Description: Your Addon * Version: 1.0.0 * Author: WPBookster */ if ( ! defined( 'ABSPATH' ) ) { die( 'We\'re sorry, but you can not directly access this file.' ); } function your_addon_booking_details_template_file( $default_template ) { // Copy the template file from the Bookster plugin to your addon plugin return plugin_dir_path( __FILE__ ) . 'templates/emails/appt-notification/appt-booking-details.php'; } add_filter( 'bookster_appt_notice_booking_details_template_file', 'your_addon_booking_details_template_file' );
Best regards,
Mia