开发者 | rodolforizzo76 |
---|---|
更新时间 | 2025年8月27日 19:01 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/wp-content/plugins/simple-bike-rental
directory, or install the plugin directly through the WordPress Plugins > Add New screen.[simpbire_bike_rental]
to any post or page.[simpbire_token_messages]
– Displays confirmation or error messages after a user confirms a booking.[simpbire_pending_confirmation]
– Shows a pending confirmation message if the booking hasn’t been confirmed yet.Yes! You can set the booking type dynamically when users choose dates on the frontend form.
The free version does not include payments. A Pro version with Stripe integration is available.
Yes, the plugin includes minimal CSS. You can override it with your theme or custom styles.
wp_mail_content_type
filter in simpbire_invia_notifica
: replaced the anonymous closure with a named callback (simpbire_set_html_mail_content_type
) and removed the filter using the same reference, preventing the text/html
content type from persisting for subsequent emails.remove_filter('wp_mail_content_type', '__return_true')
, which did not remove the actually registered callback.simpbire_email_subject
and simpbire_email_message
to allow developers to customize the subject and content of confirmation emails..pot
file accordingly.created_at
column to the simpbire_reservations
table for better tracking of reservation creation time.