Created
January 21, 2015 20:54
-
-
Save janewang/1cf09a725f5863da48d3 to your computer and use it in GitHub Desktop.
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 | |
| header('Cache-Control: private'); | |
| header('Pragma: no-cache'); | |
| # Activate ESI processing | |
| header('X-Esi: 1'); | |
| ?> | |
| <div class="right cart-div"> | |
| <?php | |
| if( is_woocommerce_activated() ) { | |
| global $woocommerce; ?> | |
| <a class="cart-icon" id="carticoncount" href="/cart/"><?php echo $woocommerce->cart->cart_contents_count; ?></a> | |
| <?php do_action('swell_header_cart_dropdown'); | |
| } | |
| ?> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment