Advertisement
srikat

Untitled

May 11th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. // Add the checkout link to the header
  2. add_action('woo_nav_before', 'artificer_header_checkout_link',10);
  3. if ( ! function_exists( 'artificer_header_checkout_link' ) ) {
  4.     function artificer_header_checkout_link() {
  5.     global $woocommerce;
  6.     ?>
  7.     <a href="<?php echo $woocommerce->cart->get_checkout_url()?>" class="checkout"><span class="lozenge"><?php _e('Checkout','woothemes') ?></span></a>
  8.     <?php }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement