Forums
Home / Plugin: Quick Bulk Variations Checkout for WooCommerce / Rename text “Title”
(@aziz97)
3 years, 9 months ago
how to rename “TITLE” text to OPTION ?
(@hitendra-chopda)
3 years, 8 months ago
Hello aziz97,
Thanks for contacting us.
Please add the below filter in your theme’s functions.php file and add your own title to show.
function wqcmv_table_headers_custom( $default_headers){ $default_headers['title'] = esc_html__('YOUR TITLE', 'woocommerce-quick-cart-for-multiple-variations'); return $default_headers; } add_filter( 'wqcmv_table_headers','wqcmv_table_headers_custom', 10, 1 );
Best Regards, Hitendra & Dotstore Team