Skip to content

Instantly share code, notes, and snippets.

<?php global $woocommerce; ?>
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
@jbiros
jbiros / queries.css
Created October 8, 2012 12:27
Media QUERIES
@media (max-width: 1130px) { ... } //for dekstop
@media (max-device-width: 1024px) and (orientation: landscape) { ... } //for devices
@media (max-device-width: 960px){ ... }
@media (max-device-width: 800px) and (orientation: landscape){ ... }
@media (max-device-width: 480px) and (orientation: portrait) { ... }
@jbiros
jbiros / head.html
Created September 26, 2012 05:26
Favicon | Apple Icons Snippets
// assuming that there is an icons folder in the root directory
// favicon - standard html
<link rel="shortcut icon" href="icons/favicon.ico">
// Apple Devices Favicons/Icons
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="57x57" href="icons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="icons/apple-touch-icon-144x144.png">