Advertisement
Guest User

Untitled

a guest
May 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. function patricks_woocommerce_call_to_order_button(){
  3. global $product; //get the product object
  4. if ( $product ) { // if there's a product proceed
  5. $url = esc_url( $product->get_permalink() ); //get the permalink to the product
  6. echo '<a rel="nofollow" href="' . $url . '" class="button add_to_cart_button ">Call to order!</a>'; //display a button that goes to the product page
  7. }
  8. }
  9. add_action('woocommerce_after_shop_loop_item','patricks_woocommerce_call_to_order_button', 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement