Advertisement
lorro

WooCommerce - Link shop straight to cart

Jan 8th, 2017
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. <?php
  2.   // WooCommerce - make shop and catalogue images link straight to cart
  3.   // code goes in functions.php for your child theme
  4.   remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );
  5.   add_action( 'woocommerce_before_shop_loop_item', 'my_loop_open', 10);
  6.   function my_loop_open() {
  7.     $cart_link = 'http://www.topcode.co.uk/solar_active/shop/cart/?add-to-cart='.get_the_ID();
  8.     echo '<a href="' . $cart_link . '" class="woocommerce-LoopProduct-link">';
  9.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement