Would you be able to give me an example of how that would work/ be implemented?
For instance my code in my functions.php file looks like this:
add_action( 'woocommerce_before_calculate_totals', 'add_custom_price' );
function add_custom_price( ) {
$product->set_price('1');
}