add_action( 'woocommerce_before_shop_loop_item_title', 'my_sold_out_loop' );
function my_sold_out_loop() {
global $product;
if ( !$product->is_in_stock() ) {
echo '<span class="soldout">Нет в наличии</span>';
}
}
add_action( 'woocommerce_before_single_product_summary', 'my_sold_out_loop' );
span.soldout {
padding: 3px 7px;
background: #7b1616;
color: white;
font-size: 13px;
}
add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2);
function wcs_custom_get_availability( $availability, $_product ) {
if ( $_product->is_in_stock() ) {
$availability['availability'] = __('Available!', 'woocommerce');
}
if ( ! $_product->is_in_stock() ) {
$availability['availability'] = __('Sold Out', 'woocommerce');
}
return $availability;
}
if ( $product->is_in_stock() ) {
echo '<div class="stock" >' . $product->get_stock_quantity() . ' в наличии</div>';
} else {
echo '<div class="out-of-stock" >Нет в наличии</div>';
}
function my_stock_loop() {
global $product;
if ( $product->is_in_stock() ) {
echo '<div class="stock" >' . $product->get_stock_quantity() . ' в наличии</div>';
} else {
echo '<div class="out-of-stock" >Нет в наличии</div>';
}
}
add_action( 'woocommerce_after_shop_loop_item_title', 'my_stock_loop' );
add_filter( 'woocommerce_get_price_html', 'my_price_html', 100, 2 );
function my_price_html( $price, $product ){
global $product;
$return_string = $price;
if ( $product->stock_status == 'outofstock' ) {
$return_string = $price .' (Нет в наличии)';
}
return $return_string;
}
add_filter( 'woocommerce_product_subcategories_hide_empty', 'hide_empty_categories', 10, 1 );
function hide_empty_categories ( $hide_empty ) {
$hide_empty = FALSE;
// You can add other logic here too
return $hide_empty;
}
add_filter( 'woocommerce_product_subcategories_hide_empty', 'show_empty_categories', 10, 1 );
function show_empty_categories ( $show_empty ) {
$show_empty = TRUE;
// You can add other logic here too
return $show_empty;
}