mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
10 lines
348 B
Text
10 lines
348 B
Text
function remove_backorder_from_item_meta( $html, $item, $args ){
|
|
|
|
if ( strpos( $html, 'Backordered:') !== false ){
|
|
return str_replace( '<li><strong class="wc-item-meta-label">Backordered:</strong> <p>', '<li><p>', $html );
|
|
}
|
|
|
|
return $html;
|
|
}
|
|
|
|
add_filter( 'woocommerce_display_item_meta', 'remove_backorder_from_item_meta', 10, 3);
|