Show number of sold products but be first for less than 2
OK, so if anyone else is looking for the answer for this I figured it out after a bit more sleep. I had to get rid of the return and the second function. So the code now looks like this add_action( ‘woocommerce_single_product_summary’, ‘my_units_sold_counts’, 19 ); function my_units_sold_counts($units_sold) { global $product; $units_sold = get_post_meta( $product->id, ‘total_sales’, … Read more