• Resolved mtibbits

    (@mtibbits)


    We want to change the text and the URL for the “Add to Cart” button the Featured Image slider. Are there hooks that allow us to do this easily?

    Thanks,
    Matt

Viewing 1 replies (of 1 total)
  • Thread Starter mtibbits

    (@mtibbits)

    I answered my own question using the following code:

    add_filter('wcps_filter_cart', 'replace_slider_cart_text', 99);
    
    function replace_slider_cart_text () {
    
    	global $post;
    
    	return '<div class="wcps-items-cart"><a class="button" href="' . get_the_permalink($post->ID) . '">View Product</a></div>';
    }
Viewing 1 replies (of 1 total)

The topic ‘Modify “Add to Cart” button’ is closed to new replies.