This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// add core markup to woocommerce pages | |
add_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper'); | |
// overwrite existing output content wrapper function | |
function woocommerce_output_content_wrapper() { | |
echo '<div class="main-bg no-top-banner"> | |
<div class="container"> | |
<div id="content" class="row" > | |
<div id="main" class="col-md-9 pull-right clearfix" >'; | |
} | |
add_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end'); | |
function woocommerce_output_content_wrapper_end() { | |
echo '</div><!-- Close Main --> | |
</div><!-- Close Row --> | |
</div><!-- Close Container --> | |
</div><!-- Close Main-BG -->'; | |
} |
Consider adding the following to include checkout:-