Product Icon

WooCommerce Bookings

Allow customers to book appointments, make reservations, or rent equipment without leaving your site.

Provide the option to disable the FROM next to the product price in WooCommerce Bookings.

Provide the option to disable the “from” next to the product price in WooCommerce Bookings.

Author

Anonymous

Current Status

Completed

Last updated: May 19, 2026

1 comment

Log in to comment on this feature request.

  1. Jason Kytros says:
    Product developer May 19, 2026 12:37 pm

    Hi there,

    Thanks for the suggestion.

    The “From:” prefix is appended in the Bookings product class and the final HTML is then passed through WooCommerce’s standard woocommerce_get_price_html filter, which you can hook to strip or replace it.

    Sample snippet:

    add_filter( ‘woocommerce_get_price_html’, function( $price_html, $product ) {
    if ( $product instanceof WC_Product_Booking ) {
    $price_html = str_replace( __( ‘From: ‘, ‘woocommerce-bookings’ ), ”, $price_html );
    }
    return $price_html;
    }, 20, 2 );

    Marking this one as completed. Thanks again!

Use of your personal data
We and our partners process your personal data (such as browsing data, IP Addresses, cookie information, and other unique identifiers) based on your consent and/or our legitimate interest to optimize our website, marketing activities, and your user experience.