WooCommerce: change “Product” text to “Ticket” throughout WooCommerce (not 100%, such as in wp-admin) * Useful if only using WooCommerce for Event Tickets Plus, not selling other Products
<?php
/**
* WooCommerce: change “Product” text to “Ticket” throughout WooCommerce (not 100%, such as in wp-admin)
* Useful if only using WooCommerce for Event Tickets Plus, not selling other Products
*
* From https://gist.github.com/cliffordp/e7177522eac641bf2051a363a29b2af1
*/
function cliff_woo_rename_product_text( $translation, $text, $domain ) {
if ( 'woocommerce' == $domain && 'Product' == $translation ) {
return 'Ticket';
}
return $translation;
}
add_filter( 'gettext', 'cliff_woo_rename_product_text', 20, 3 );