skip to Main Content

Add Text After the Price in WooCommerce Product Per Product ID/WP

I have the following code in my child theme's functions.php file, and it works great. function themeprefix_custom_price_message( $price ) { global $post; $product_id = $post->ID; $my_product_array = array( 270,373,378,506,1306,1311,1312,1444,1445,1447,1449,1930,1932,1933,1934,1935,1963,4146,4152,4153,4154 );//add in product IDs if ( in_array( $product_id, $my_product_array )) {…

VIEW QUESTION
Back To Top
Search