[ad_1]
Hi,
By default, services have fixed durations. Therefore defining per hour price does not make sense.
However, if you use Variable Durations premium addon where client can select duration of the service, you can define hourly or custom price for each service duration. See demos:
Cheers,
Hakan
Thread Starter
varlot
(@varlot)
Hakan,
thank You for Your reply but this does not help my situation.
Maybe I didn’t frame it right.
Even if I set all the services at one hour max frame I would still need a so called arrival fee to be separately shown while ordering and then to have a total price.
I understand that it’s a fringe case.
Here is what I have in mind.
I’ll hopefully find a way to solve it on my end. 🙂
Best regards,
Varlot
- This reply was modified 59 minutes ago by varlot.
You cannot have a separate item on the form as “arrival fee”, but you can increase the final price by a fixed amount using filter hook app_confirmation_total_price and you can add a note at the end of the form like this:
[app_book _final_note="Price includes $100 arrival fee"]
add_filter( 'app_confirmation_total_price', 'app_add_arrival_fee' );
function app_add_arrival_fee( $price ) {
return $price + 100;
}
