@haylee.mertz
To get the order price in WooCommerce, you can use the following code snippet:
1 2 |
$order = wc_get_order( $order_id ); $order_total = $order->get_total(); |
In this code snippet:
You can use this code snippet in your theme's functions.php file or in a custom plugin to retrieve the order price in WooCommerce.