Tickera

Tickera Change Read More Button Text

To change the Read more… text for the buttons of out of stock ticket types, you can add the following as PHP snippet using Code Snippets plugin: ​ add_filter( ‘woocommerce_product_add_to_cart_text’, ‘tc_change_read_more’ ); function tc_change_read_more( $text ) { global $product; if ( $product && ! $product->is_in_stock() ) { return ‘Out of stock’; } return $text; } […]