Landing Pages & Display Actions
Action hooks fired around landing page rendering, booking confirmation pages, and front-end markup.
12 unique action hooks currently map to this category, across 12 call sites.
Hook Inventory
| Hook | Edition | Call Sites | First Source |
|---|---|---|---|
fluent_booking/after_calendar_event_landing_page | Core | 1 | fluent-booking/app/Views/landing/booking.php:68 |
fluent_booking/author_landing_footer | Core | 1 | fluent-booking/app/Views/landing/booking.php:84 |
fluent_booking/author_landing_head | Core | 1 | fluent-booking/app/Views/landing/booking.php:58 |
fluent_booking/before_calendar_event_landing_page | Core | 1 | fluent-booking/app/Views/landing/booking.php:63 |
fluent_booking/booking_confirmation_footer | Core | 1 | fluent-booking/app/Views/public/booking_confirmation.php:106 |
fluent_booking/booking_details_header | Core | 1 | fluent-booking/app/Views/public/booking_confirmation.php:9 |
fluent_booking/front_footer | PRO | 1 | fluent-booking-pro/app/Views/front-app.php:164 |
fluent_booking/front_head | PRO | 1 | fluent-booking-pro/app/Views/front-app.php:153 |
fluent_booking/landing_page_route_ | Core | 1 | fluent-booking/app/Services/LandingPage/LandingPageHandler.php:66 |
fluent_booking/main_landing | Core | 1 | fluent-booking/app/Views/landing/author_landing.php:66 |
fluent_booking/main_landing_footer | Core | 1 | fluent-booking/app/Views/landing/author_landing.php:88 |
fluent_booking/payment_receipt/after_content | PRO | 1 | fluent-booking-pro/app/Services/ReceiptHelper.php:68 |
fluent_booking/after_calendar_event_landing_page
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/booking.php:68
Example
php
add_action('fluent_booking/after_calendar_event_landing_page', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/author_landing_footer
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/booking.php:84
Example
php
add_action('fluent_booking/author_landing_footer', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/author_landing_head
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/booking.php:58
Example
php
add_action('fluent_booking/author_landing_head', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/before_calendar_event_landing_page
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/booking.php:63
Example
php
add_action('fluent_booking/before_calendar_event_landing_page', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/booking_confirmation_footer
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/public/booking_confirmation.php:106
Example
php
add_action('fluent_booking/booking_confirmation_footer', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/booking_details_header
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/public/booking_confirmation.php:9
Example
php
add_action('fluent_booking/booking_details_header', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/front_footer
- Type: action
- Edition: PRO
- Call sites: 1
Source locations
fluent-booking-pro/app/Views/front-app.php:164
Example
php
add_action('fluent_booking/front_footer', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/front_head
- Type: action
- Edition: PRO
- Call sites: 1
Source locations
fluent-booking-pro/app/Views/front-app.php:153
Example
php
add_action('fluent_booking/front_head', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/landing_page_route_
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Services/LandingPage/LandingPageHandler.php:66
Example
php
add_action('fluent_booking/landing_page_route_', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/main_landing
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/author_landing.php:66
Example
php
add_action('fluent_booking/main_landing', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/main_landing_footer
- Type: action
- Edition: Core
- Call sites: 1
Source locations
fluent-booking/app/Views/landing/author_landing.php:88
Example
php
add_action('fluent_booking/main_landing_footer', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));fluent_booking/payment_receipt/after_content
- Type: action
- Edition: PRO
- Call sites: 1
Source locations
fluent-booking-pro/app/Services/ReceiptHelper.php:68
Example
php
add_action('fluent_booking/payment_receipt/after_content', function (...$args) {
// Your custom logic here.
}, 10, count($args ?? []));