Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Last active February 16, 2016 06:49
Show Gist options
  • Select an option

  • Save farookibrahim/24366ec7b39bd588383b to your computer and use it in GitHub Desktop.

Select an option

Save farookibrahim/24366ec7b39bd588383b to your computer and use it in GitHub Desktop.
Unicase add banner in before shop page
add_action( 'woocommerce_before_main_content', 'custom_banner_html' );
function custom_banner_html() {
?>
<div class="row inner-bottom-xs">
<div class="col-md-4">
<img src="">
</div>
<div class="col-md-4">
<img src="">
</div>
<div class="col-md-4">
<img src="">
</div>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment