Прошу помощи вписать 2 слова

Скачай всю папку с темой на комп, открой Тотал Коммандер, сделай поиск по содержимому "rt_product_price" и увидишь где нужный файл лежит, по другому не поправишь
нашел, он шел в плагине к теме
Код:
if( ! function_exists("create_rt_product_price") ){
    /**
    * Create product price
    *      
    * @param  array $args{
    *         "regular_price" => $regular_price,
    *         "sale_price" => $sale_price
    * }
    * @return output
    */
    function create_rt_product_price( $args = array() ){

        extract( $args );   

        $regular_price_output = $sale_price_output = "";       

        //get currency displaying format from options
        $currency_location = get_theme_mod(RT_THEMESLUG."_currency_location");
        $currency_location  = $currency_location ? $currency_location : "before";

        $currency_format = $currency_location == "before" ? "%1\$s%2\$s" : "%2\$s%1\$s";

        //currency
        $currency  = apply_filters("rt_product_currency", get_theme_mod(RT_THEMESLUG."_currency") );
     
        //regular price with currency 
        $regular_price = ! empty( $regular_price ) ? sprintf( $currency_format, $currency, $regular_price ) : "";

        //sale price with currency 
        $sale_price = ! empty( $sale_price ) ? sprintf( $currency_format, $currency, $sale_price ) : "";

        //regular price output
        $regular_price_output = ! empty( $regular_price ) ? sprintf( '<del><span class="amount">%s</span></del>', $regular_price ) : "";

        //sale price output
        $sale_price_output = ! empty( $sale_price ) ? sprintf( '<ins><span class="amount">%s</span></ins>', $sale_price ) : "";

        //price group output
        $price_output = ! empty( $regular_price_output ) || ! empty( $sale_price_output ) ? sprintf( 
        '
            <!-- product price -->
            <p class="price icon-">   
                %1$s %2$s
            </p> 
        ',$regular_price_output, $sale_price_output): "";

        echo $price_output;
    }
}
add_action( "rt_product_price", "create_rt_product_price", 10, 1 );

if( ! function_exists("rt_tax_pagination_fix") ){
    /**
 
Код:
echo $price_output;
заменить на
Код:
echo 'от '.$price_output.' в сутки';
но если что то сломается то только через CSS
 
Код:
echo $price_output;
заменить на
Код:
echo 'от '.$price_output.' в сутки';
но если что то сломается то только через CSS
на разных строках и вот так выглядит)

от ----
----цена
-------в сутки
 
Ребята, сделал.
Код:
        //regular price output
        $regular_price_output = ! empty( $regular_price ) ? sprintf( '<del><span class="amount">от %s/сутки</span></del>', $regular_price ) : "";

        //sale price output
        $sale_price_output = ! empty( $sale_price ) ? sprintf( '<ins><span class="amount">от %s/сутки</span></ins>', $sale_price ) : "";

теперь пытаюсь сделать так, чтобы плагин выводил %s в валюте выбранной пользователем. на трабла в том что выводится только шоткодом
Код:
do_shortcode( '[wpcs_price meta_value="%s"]' )
как теперь вписать слова "от" и "/сутки"?
Заранее благодарен.
 
Назад
Сверху