New Landing How can we help? Themeforest Theme Support Neighborhood Product description heading

Viewing 2 posts - 1 through 2 (of 2 total)
  • #130740
    member
    Member
    Post count: 49

    Hi,
    I need to change the Description heading in the single product page, how can i do this?

    Is it possible to change the currency symbol in the products, currently its displaying rupees symbol instead of that can i put INR with the product price.

    Thanks

    #130744
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    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

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register