/** * Deprecated Functions of Astra Theme. * * @package Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Deprecating footer_menu_static_css function. * * Footer menu specific static CSS function. * * @since 3.7.4 * @deprecated footer_menu_static_css() Use astra_footer_menu_static_css() * @see astra_footer_menu_static_css() * * @return string Parsed CSS */ function footer_menu_static_css() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_footer_menu_static_css()' ); return astra_footer_menu_static_css(); } /** * Deprecating is_support_footer_widget_right_margin function. * * Backward managing function based on flag - 'support-footer-widget-right-margin' which fixes right margin issue in builder widgets. * * @since 3.7.4 * @deprecated is_support_footer_widget_right_margin() Use astra_support_footer_widget_right_margin() * @see astra_support_footer_widget_right_margin() * * @return bool true|false */ function is_support_footer_widget_right_margin() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_support_footer_widget_right_margin()' ); return astra_support_footer_widget_right_margin(); } /** * Deprecating prepare_button_defaults function. * * Default configurations for builder button components. * * @since 3.7.4 * @deprecated prepare_button_defaults() Use astra_prepare_button_defaults() * @param array $defaults Button default configs. * @param string $index builder button component index. * @see astra_prepare_button_defaults() * * @return array */ function prepare_button_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_button_defaults()' ); return astra_prepare_button_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_html_defaults function. * * Default configurations for builder HTML components. * * @since 3.7.4 * @deprecated prepare_html_defaults() Use astra_prepare_html_defaults() * @param array $defaults HTML default configs. * @param string $index builder HTML component index. * @see astra_prepare_html_defaults() * * @return array */ function prepare_html_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_html_defaults()' ); return astra_prepare_html_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_social_icon_defaults function. * * Default configurations for builder Social Icon components. * * @since 3.7.4 * @deprecated prepare_social_icon_defaults() Use astra_prepare_social_icon_defaults() * @param array $defaults Social Icon default configs. * @param string $index builder Social Icon component index. * @see astra_prepare_social_icon_defaults() * * @return array */ function prepare_social_icon_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_social_icon_defaults()' ); return astra_prepare_social_icon_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_widget_defaults function. * * Default configurations for builder Widget components. * * @since 3.7.4 * @deprecated prepare_widget_defaults() Use astra_prepare_widget_defaults() * @param array $defaults Widget default configs. * @param string $index builder Widget component index. * @see astra_prepare_widget_defaults() * * @return array */ function prepare_widget_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_widget_defaults()' ); return astra_prepare_widget_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_menu_defaults function. * * Default configurations for builder Menu components. * * @since 3.7.4 * @deprecated prepare_menu_defaults() Use astra_prepare_menu_defaults() * @param array $defaults Menu default configs. * @param string $index builder Menu component index. * @see astra_prepare_menu_defaults() * * @return array */ function prepare_menu_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_menu_defaults()' ); return astra_prepare_menu_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_divider_defaults function. * * Default configurations for builder Divider components. * * @since 3.7.4 * @deprecated prepare_divider_defaults() Use astra_prepare_divider_defaults() * @param array $defaults Divider default configs. * @param string $index builder Divider component index. * @see astra_prepare_divider_defaults() * * @return array */ function prepare_divider_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_divider_defaults()' ); return astra_prepare_divider_defaults( $defaults, absint( $index ) ); } /** * Deprecating is_astra_pagination_enabled function. * * Checking if Astra's pagination enabled. * * @since 3.7.4 * @deprecated is_astra_pagination_enabled() Use astra_check_pagination_enabled() * @see astra_check_pagination_enabled() * * @return bool true|false */ function is_astra_pagination_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_pagination_enabled()' ); return astra_check_pagination_enabled(); } /** * Deprecating is_current_post_comment_enabled function. * * Checking if current post's comment enabled and comment section is open. * * @since 3.7.4 * @deprecated is_current_post_comment_enabled() Use astra_check_current_post_comment_enabled() * @see astra_check_current_post_comment_enabled() * * @return bool true|false */ function is_current_post_comment_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_current_post_comment_enabled()' ); return astra_check_current_post_comment_enabled(); } /** * Deprecating ast_load_preload_local_fonts function. * * Preload Google Fonts - Feature of self-hosting font. * * @since 3.7.4 * @deprecated ast_load_preload_local_fonts() Use astra_load_preload_local_fonts() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_load_preload_local_fonts() * * @return string */ function ast_load_preload_local_fonts( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_load_preload_local_fonts()' ); return astra_load_preload_local_fonts( $google_font_url ); } /** * Deprecating ast_get_webfont_url function. * * Getting webfont based Google font URL. * * @since 3.7.4 * @deprecated ast_get_webfont_url() Use astra_get_webfont_url() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_get_webfont_url() * * @return string */ function ast_get_webfont_url( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_get_webfont_url()' ); return astra_get_webfont_url( $google_font_url ); }/** * The header for Astra Theme. * * This is the template that displays all of the section and everything up until
* * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> I want to sincerely thank-you and all of the staff at Water – BT

I want to sincerely thank-you and all of the staff at Water

You guys are a great class, you really have pretty good some one dealing with your, as well as the delivery of your bundle because of the group inside try impressive!

Literally folk in our class had only higher what things to state concerning hygiene of one’s lodge, the superb eating, however, even more important brand new friendliness of every staff i appeared in touch with. We’ll definitely be utilizing the resort once again afterwards.

I really don’t have even the text to talk about just how thankful We are so you can two of you for making the earliest ever Asking Appointment a massive victory

Thank you so much considerably to own enabling us to has actually a Plinko online successful and you will perfect skills. The flexibleness and you will reliability of everyone dealing with all of us was extremely much enjoyed. Our very own customers was indeed pleased toward lodge, conference rooms, Topgolf and you can restaurant. It was our first in-individual experiences in certain many years, and everybody is most comfy and happy with all facets.

Ralph~ Thank you so much once more to own carrying out a great fulfilling. You obtained our calls- immediately, was indeed professional-active into the every fronts, responded issues entirely and handled united states for example Gold. We very take pleasure in all perform internationally appointment.

Inspire. Because you each other learn, this has been a lifetime future because of cancelations on the pandemic. Couple stood by the all of us for pretty much 36 months. You has worked tirelessly in order that you had been conference our very own requirement and request. Keith, you inside it all correct people during the Sea to make certain they realized essential it was. Both of you was members of the family for a lifetime, genuinely you both decided my protectors! You are each other elite group, innovative, kind, wise and i hope you both understand how far which implied to any or all folks. You’d to manage of a lot personalities, of numerous consult, of many alter…..you probably did they……I truly trust we would have-not acquired so it from a beneficial separate locale. Your staff was also amazing, every single one � Jenna, Cathy, Jose, Maureen, Kate, John, this checklist continues and on. The food try delicious and i really enjoyed the new cook upcoming out to check on anything.

I’m creating this page to express how delighted we had been which have the ocean Local casino Hotel. The resort try exactly what your website stated and much more. The scene away from every bed room was in fact good, the employees since that time i featured during the up until we seemed away were lovely, respectful, and you will amicable. The sit is actually very enjoyable we would like to hold the yearly group meetings from the Hotel and possibly some other quick events that people would-be holding in the future.

As I am highlighting on the several of our business’s accomplishments in 2010, the most significant by far try the twentieth Wedding feel in the Water. I recently wanted to send a simple note to allow you to be aware that that it experiences won’t have been it is possible to without any help of one’s class especially Ralph Arzayus. My associate Dave Sanborn and that i wished The ocean becoming all of our venue right away! We spotted such as for example prospective and you may beauty on your own property and you can know it might be a remarkable sense for the crew. Ralph helped united states each step of the way and enjoy our vision to become possible. All curve-ball i threw on your he previously an answer for and you can taken care of all of us that have such as elegance and you may professionalism. In order the year concludes, merely wanted to say a large Thanks in order to Ralph and you can class. I look ahead to continuous the relationship with you all. Thanks a lot so you’re able to a remarkable 2023!

I recently wished to touch base and you will thank each of you to suit your contribution to your Honours Baquet so it earlier Friday evening. The night time ran of as opposed to a hitch and you will is exactly as I envisioned it 4 weeks in the past as soon as we come believed.