I need to replace this icon (₴)which is near the price of the goods on (Грн) how

Home Forums All Other Themes I need to replace this icon (₴)which is near the price of the goods on (Грн) how

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #96336
    shvec100100shvec100100
    Participant
    • Topics: 13
    • Replies: 34
    • Total: 47
    Member since: February 1, 2018

    I need to replace this icon (₴)which is near the price of the goods on (Грн) how to do it?

    My theme Adventure
    my site: yesport.com.ua

    #96355
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 30881
    • Total: 30881
    Member since: August 16, 2013

    Already replied

    #96529
    shvec100100shvec100100
    Participant
    • Topics: 13
    • Replies: 34
    • Total: 47
    Member since: February 1, 2018

    but there is not correct.
      nothing has changed

    #96539
    shvec100100shvec100100
    Participant
    • Topics: 13
    • Replies: 34
    • Total: 47
    Member since: February 1, 2018

    it is very urgent for me
    help me please

    #96554
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 30881
    • Total: 30881
    Member since: August 16, 2013

    Hi,

    Can you send us the screenshot of your issues? Upload your screenshot on imgur.com and paste the share url here.

    Regards,
    Brad

    #96574
    shvec100100shvec100100
    Participant
    • Topics: 13
    • Replies: 34
    • Total: 47
    Member since: February 1, 2018

    https://imgur.com/a/Uf7EZ#7q8BZAH

    правильно
    И там стоит этот знак там нет грн.
    этого не написано
    Мне сказали это надо как-то чере код вставить.
    в конце файла functions.php

    add_filter( ‘woocommerce_currencies’, ‘add_my_currency’ );

    function add_my_currency( $currencies ) {

    $currencies[‘UAH’] = __( ‘Українська гривня’, ‘woocommerce’ );

    return $currencies;

    }

    add_filter(‘woocommerce_currency_symbol’, ‘add_my_currency_symbol’, 10, 2);

    function add_my_currency_symbol( $currency_symbol, $currency ) {

    switch( $currency ) {

    case ‘UAH’: $currency_symbol = ‘грн’; break;

    }

    return $currency_symbol;

    }

    #96583
    Sonl SinhaSonl Sinha
    Moderator
    • Topics: 0
    • Replies: 30881
    • Total: 30881
    Member since: August 16, 2013

    Hi,

    Kindly check this article: https://docs.woocommerce.com/document/shop-currency/

    Regards,
    Brad

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.