Skip to content

Instantly share code, notes, and snippets.

@tombryan
Created April 11, 2014 11:29
Show Gist options
  • Save tombryan/10460322 to your computer and use it in GitHub Desktop.
Save tombryan/10460322 to your computer and use it in GitHub Desktop.
WooCommerce snippet for showing something only if there are items in the cart
<?php if( $woocommerce->cart->cart_contents_count > 0 ) : ?>
<!-- stuff -->
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment