woocommerce_product_empty_cogs_html
woocommerce_product_empty_cogs_html
Appears in: woocommerce.9.9.5
Hook Type: filter
Displaying hooks found in version: woocommerce.9.9.5apply_filters('woocommerce_product_empty_cogs_html') is found 1 times:
- /includes/abstracts/abstract-wc-product.php line 1972
* @param WC_Product $product The product for which the cost is rendered. * * @since 9.8.0 */ $html = apply_filters( 'woocommerce_product_empty_cogs_html', '', $this ); } else { $html = wc_price( $value ) . $this->get_price_suffix(); } /** * Filter to customize how the Cost of Goods Sold value for a product gets rendered to HTML.