May 19, 14:45
Some themes (like WoodMart) force the header and footer to load even if the page is set to the Elementor Canvas template. This can be resolved in the following way:
Use a code snippet plugin (such as Code Snippets) to add the following code to remove the header and footer for a specific page ID:
add_action('template_redirect', function() {
if (is_page(123)) { // Replace 123 with the ID of the target page.
remove_all_actions('woodmart_before_main_content');
remove_all_actions('woodmart_after_main_content');
}
});
Make sure the page cache is cleared and refresh the CDN.
Check the theme settings for the "Force header and footer display" option, some themes require manual disabling.
Doing so can completely hide the theme header and footer on a specific page and realize the full-screen effect of Elementor canvas.
April 18, 11:39





