• Добрый вечер! ПОДСКАЖИТЕ ПОЖАЛУЙСТА!
    Добавляю текст перед ценой

    add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );
    add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );
    function cw_change_product_price_display( $price ) {
        // Your additional text in a translatable string
        $text = __('TEXT');
    
        // returning the text before the price
        return $text . ' ' . $price;
    }

    Все работает!
    Но как сделать выод на 2-языках.
    Как $text изложить =

    if(get_locale() == 'ru_RU'){ ?>
    
    <div id="elem" class="zakaz1"> Цена от </div>
    <?php } else { ?>
    <div  id="elem" class="zakaz2">Ціна від</div>
    <?php }

    ПОМОГИТЕ!!!!!

  • Тема «Текст перед ценой на 2-х языках» закрыта для новых ответов.