PluginProbe
Booking Calendar / 11.8.2
Booking Calendar v11.8.2
11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 10.11.3 All 202 releases
← All changes | core/wpbc_functions.php +7 -3 11.611.8.2 View file →
@@ -556,10 +556,8 @@
556 556 || (
557 557 ( $_REQUEST['page'] === 'wpbc-catalog-booking-resources' ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended
558 558 && function_exists( 'wpbc_is_11_6_features_enabled' )
559 559 && wpbc_is_11_6_features_enabled()
560 - && defined( 'WPBC_ENABLE_11_6_CATALOG_V2' )
561 - && WPBC_ENABLE_11_6_CATALOG_V2
562 560 )
563 561 )
564 562 ) {
565 563 return true;
@@ -598,9 +596,15 @@
598 596 * @return bool
599 597 */
600 598 function wpbc_can_i_load_on_this_page__modal_search_options() {
601 599
602 - if ( wpbc_can_i_load_on__searchable_resources_page() ){
600 + if (
601 + wpbc_can_i_load_on__searchable_resources_page()
602 + || (
603 + function_exists( 'wpbc_catalog_searchable_resources_is_page' )
604 + && wpbc_catalog_searchable_resources_is_page()
605 + )
606 + ) {
603 607 return true;
604 608 } else {
605 609 return false;
606 610 }