Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_cart_url()
Where the cart form should lead the users into
Return
(string)
Source
File: src/Tribe/Commerce/WooCommerce/Main.php
public function get_cart_url() {
$cart_url = wc_get_cart_url();
/**
* `tribe_tickets_woo_cart_url`
* Allow to filter the URL
*
* @since 4.10
*
* @param string $cart_url WooCommerce Cart URL.
*/
return apply_filters( 'tribe_tickets_woo_cart_url', $cart_url );
}
Changelog
| Version | Description |
|---|---|
| 4.8.1 | Introduced. |