Hi,
1- Add the following snippet to your themes functions.php file of child theme.
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'More Information' ); // Rename the
return $tabs;
}
2- Add the following snippet to your themes functions.php file of child theme.
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'INR': $currency_symbol = 'INR'; break;
}
return $currency_symbol;
}
Thanks
Mohammad