Skip to content

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

HookEditionCall SitesFirst Source
fluent_booking/after_calendar_event_landing_pageCore1fluent-booking/app/Views/landing/booking.php:68
fluent_booking/author_landing_footerCore1fluent-booking/app/Views/landing/booking.php:84
fluent_booking/author_landing_headCore1fluent-booking/app/Views/landing/booking.php:58
fluent_booking/before_calendar_event_landing_pageCore1fluent-booking/app/Views/landing/booking.php:63
fluent_booking/booking_confirmation_footerCore1fluent-booking/app/Views/public/booking_confirmation.php:106
fluent_booking/booking_details_headerCore1fluent-booking/app/Views/public/booking_confirmation.php:9
fluent_booking/front_footerPRO1fluent-booking-pro/app/Views/front-app.php:164
fluent_booking/front_headPRO1fluent-booking-pro/app/Views/front-app.php:153
fluent_booking/landing_page_route_Core1fluent-booking/app/Services/LandingPage/LandingPageHandler.php:66
fluent_booking/main_landingCore1fluent-booking/app/Views/landing/author_landing.php:66
fluent_booking/main_landing_footerCore1fluent-booking/app/Views/landing/author_landing.php:88
fluent_booking/payment_receipt/after_contentPRO1fluent-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 ?? []));

  • 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 ?? []));

  • 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 ?? []));

  • 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 ?? []));

  • 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 ?? []));