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; } […]
Tickera
How to Limit Ticket Table Quantity to 10 in 2nd row on store.purefreedom.org
This “elementor-element-c78834a” goes in CSS Classes on the table if we want to limit the second row to a minimum of 10 quantity
