Add content after the price on featured products in WooCommerce

Add content after the price on featured products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_get_price_html', 'theme_add_description_after_or_after_price', 2, 10 );

function theme_add_description_after_or_after_price($price, $product){
    $description = ($product->is_featured()) ? 'Your HTML or text' : '';
    return $price . $description  ;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.