kuminov
Постоялец
- Регистрация
- 20 Окт 2013
- Сообщения
- 173
- Реакции
- 36
- Автор темы
- #11
нашел, он шел в плагине к темеСкачай всю папку с темой на комп, открой Тотал Коммандер, сделай поиск по содержимому "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") ){
/**