How do we remove the header and footer of our theme? :)

Am using WooCommerce’s Superstore and I can’t find a way to remove those =.=

<?php
if ( ! defined( ‘ABSPATH’ ) ) exit;
/**

  • Template Name: Full Width

  • This template is a full-width version of the page.php template file. It removes the sidebar area.

  • @package WooFramework

  • @subpackage Template
    */
    get_header();
    global $woo_options;
    ?>

    <div id=“content” class=“page col-full”>

     &lt;?php woo_main_before(); ?&gt;
    
     &lt;section id="main" class="fullwidth"&gt;
    
     &lt;?php
     	if ( have_posts() ) { $count = 0;
     		while ( have_posts() ) { the_post(); $count++;
     ?&gt;
             &lt;article &lt;?php post_class(); ?&gt;&gt;
    
                 &lt;section class="entry"&gt;
    
                 	&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
    
                 	&lt;?php the_content(); ?&gt;
                	&lt;/section&gt;&lt;!-- /.entry --&gt;
    
             &lt;/article&gt;&lt;!-- /.post --&gt;
    
     	&lt;?php
     			} // End WHILE Loop
     		} else {
     	?&gt;
     		&lt;article &lt;?php post_class(); ?&gt;&gt;
             	&lt;p&gt;&lt;?php _e( 'Sorry, no posts matched your criteria.', 'woothemes' ); ?&gt;&lt;/p&gt;
             &lt;/article&gt;&lt;!-- /.post --&gt;
         &lt;?php } ?&gt;
    
     &lt;/section&gt;&lt;!-- /#main --&gt;
    
     &lt;?php woo_main_after(); ?&gt;
    

    </div><!-- /#content -->

<?php get_footer(); ?>

Here’s the code. I tried removing both get_header() and get_footer() lines and have <html> and </html> as replacement, but it doesn’t work :frowning: Any thoughts?