MilanBozic

Untitled

Dec 28th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /**
  2. * Link empty menu cart to WooCommerce Cart page - added by WPPS
  3. */
  4. add_filter('wpmenucart_emptyurl', 'wpmenucart_emptyurl' );
  5. add_filter('wpmenucart_emptytitle', 'wpmenucart_emptytitle' );
  6. function wpmenucart_emptyurl ($empty_url) {
  7. global $woocommerce;
  8. $cart_url = $woocommerce->cart->get_cart_url();
  9. return $cart_url;
  10. }
  11. function wpmenucart_emptytitle ($title) {
  12. $title = __('View your shopping cart', 'wpmenucart');
  13. return $title;
  14. }
Add Comment
Please, Sign In to add comment