{"id":5676,"date":"2025-02-28T12:09:14","date_gmt":"2025-02-28T04:09:14","guid":{"rendered":"https:\/\/lansonplace.com\/causewaybay\/?page_id=5676"},"modified":"2025-03-06T22:14:17","modified_gmt":"2025-03-06T14:14:17","slug":"stayconnected","status":"publish","type":"page","link":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/","title":{"rendered":""},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-medium\"><img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"364\" src=\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png\" alt=\"\" class=\"wp-image-5681\" srcset=\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png 720w, https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-768x388.png 768w, https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-1536x777.png 1536w, https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-18x9.png 18w, https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1.png 1600w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\">Stay Connected With Us<\/h2>\n\n\n<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_15' ><form method='post' enctype='multipart\/form-data'  id='gform_15'  action='\/causewaybay\/wp-json\/wp\/v2\/pages\/5676' data-formid='15' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_15' class='gform_fields top_label form_sublabel_above description_above validation_below'><div id=\"field_15_18\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-html is-large\"  ><br><p style=\"text-align: center; margin-bottom: 0px !important;\">Welcome to Lanson Friends.<\/p>\n<p style=\"text-align: center; margin-bottom: 0px !important;\">As a member, you belong to a vibrant network that thrives on shared passions and interests.<\/p>\n<p style=\"text-align: center; margin-bottom: 0px !important;\">Sign up for our eNewsletter to receive the latest news, travel inspirations and exclusive offers from us.<\/p>\n<\/div><div id=\"field_15_2\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-eleven-twelfths gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-email is-large\"  ><label class='gfield_label gform-field-label' for='input_15_2'>Email*<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_2' id='input_15_2' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><fieldset id=\"field_15_16\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-consent is-large\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Privacy Policy*<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_16.1' id='input_15_16_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_15_16_1' ><span> \u2060I acknowledge and agree to the <a href=\"https:\/\/lansonplace.cn\/privacy-policy\/\" style=\"align-text:inline; margin: 0 5px\"> Privacy Policy <\/a> of Lanson Place and all of its locations.<\/span><\/label><input type='hidden' name='input_16.2' value='&lt;span&gt; \u2060I acknowledge and agree to the &lt;a href=&quot;https:\/\/lansonplace.cn\/privacy-policy\/&quot; style=&quot;align-text:inline; margin: 0 5px&quot;&gt; Privacy Policy &lt;\/a&gt; of Lanson Place and all of its locations.&lt;\/span&gt;' class='gform_hidden' \/><input type='hidden' name='input_16.3' value='9' class='gform_hidden' \/><\/div><\/fieldset><fieldset id=\"field_15_17\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible is-consent is-large\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Subscribe eNewsletter<\/legend><div class='ginput_container ginput_container_consent'><input name='input_17.1' id='input_15_17_1' type='checkbox' value='1'    aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_15_17_1' ><span>I agree to receive eNewsletters and special offers from Lanson Place Causeway Bay, Hong Kong by email. You can withdraw your consent at any time by using the unsubscribe mechanism in the communications sent. For more information, please see our <a href=\"https:\/\/lansonplace.cn\/privacy-policy\/\"  style=\"align-text:inline; margin: 0 5px\">Privacy Policy<\/a>.<\/span><\/label><input type='hidden' name='input_17.2' value='&lt;span&gt;I agree to receive eNewsletters and special offers from Lanson Place Causeway Bay, Hong Kong by email. You can withdraw your consent at any time by using the unsubscribe mechanism in the communications sent. For more information, please see our &lt;a href=&quot;https:\/\/lansonplace.cn\/privacy-policy\/&quot;  style=&quot;align-text:inline; margin: 0 5px&quot;&gt;Privacy Policy&lt;\/a&gt;.&lt;\/span&gt;' class='gform_hidden' \/><input type='hidden' name='input_17.3' value='9' class='gform_hidden' \/><\/div><\/fieldset><div id=\"field_15_19\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_above gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_15_19'>Email<\/label><div class='gfield_description' id='gfield_description_15_19'>This field is for validation purposes and should be left unchanged.<\/div><div class='ginput_container'><input name='input_19' id='input_15_19' type='text' value='' autocomplete='new-password'\/><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_15' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_15' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_15' id='gform_theme_15' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_15' id='gform_style_settings_15' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_15' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='15' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_15' value='WyJ7XCIxNi4xXCI6XCIwNzgwNWQzYjU5ODJiMWExMGY4NzJmZWJhNTg5YTU0NFwiLFwiMTYuMlwiOlwiMDQ0Y2VjNzJmMmFmODA4NmY1MTE3ZTg2MDk0MWZiZGRcIixcIjE2LjNcIjpcIjAyMzA0MjY4Zjk0OTRkYWIwOTVlNjRiYjU2MmNkYWU4XCIsXCIxNy4xXCI6XCIwNzgwNWQzYjU5ODJiMWExMGY4NzJmZWJhNTg5YTU0NFwiLFwiMTcuMlwiOlwiZGNiZTM5MjFiNjc5MGU2ODNlNWExYWU5YzZlOTlhNjRcIixcIjE3LjNcIjpcIjAyMzA0MjY4Zjk0OTRkYWIwOTVlNjRiYjU2MmNkYWU4XCJ9IiwiYjAzMzI2ZDkyOTMwYzQ3M2I3MzQ0N2E4ZTA1MzhmNjMiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_15' id='gform_target_page_number_15' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_15' id='gform_source_page_number_15' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 15, 'https:\/\/lansonplace.cn\/causewaybay\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_15').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_15');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_15').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_15').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_15').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_15').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_15').val();gformInitSpinner( 15, 'https:\/\/lansonplace.cn\/causewaybay\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [15, current_page]);window['gf_submitting_15'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_15').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [15]);window['gf_submitting_15'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_15').text());}else{jQuery('#gform_15').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"15\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_15\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_15\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_15\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 15, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Stay Connected With Us<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-5676","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Welcome to Lanson Friends<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Welcome to Lanson Friends\" \/>\n<meta property=\"og:description\" content=\"Stay Connected With Us\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/\" \/>\n<meta property=\"og:site_name\" content=\"Lanson Place Causeway Bay\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-06T14:14:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/\",\"url\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/\",\"name\":\"Welcome to Lanson Friends\",\"isPartOf\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png\",\"datePublished\":\"2025-02-28T04:09:14+00:00\",\"dateModified\":\"2025-03-06T14:14:17+00:00\",\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage\",\"url\":\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1.png\",\"contentUrl\":\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1.png\",\"width\":1600,\"height\":809},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/#website\",\"url\":\"https:\/\/lansonplace.cn\/causewaybay\/\",\"name\":\"Lanson Place Causeway Bay\",\"description\":\"An iconic luxury hotel in Causeway Bay, Hong Kong, Lanson Place offers a serene sanctuary for avid travellers and provides a mindful and restful stay.\",\"publisher\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lansonplace.cn\/causewaybay\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/#organization\",\"name\":\"Lanson Place Causeway Bay\",\"url\":\"https:\/\/lansonplace.cn\/causewaybay\/\",\"logo\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo\",\"url\":\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/logo-lphk.svg\",\"contentUrl\":\"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/logo-lphk.svg\",\"width\":143,\"height\":64,\"caption\":\"Lanson Place Causeway Bay\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Welcome to Lanson Friends","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/","og_locale":"en_GB","og_type":"article","og_title":"Welcome to Lanson Friends","og_description":"Stay Connected With Us","og_url":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/","og_site_name":"Lanson Place Causeway Bay","article_modified_time":"2025-03-06T14:14:17+00:00","og_image":[{"url":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/","url":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/","name":"Welcome to Lanson Friends","isPartOf":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage"},"image":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage"},"thumbnailUrl":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1-720x364.png","datePublished":"2025-02-28T04:09:14+00:00","dateModified":"2025-03-06T14:14:17+00:00","inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#primaryimage","url":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1.png","contentUrl":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/welcome-to-lanson-friends_1600x809-01-1-1.png","width":1600,"height":809},{"@type":"WebSite","@id":"https:\/\/lansonplace.cn\/causewaybay\/#website","url":"https:\/\/lansonplace.cn\/causewaybay\/","name":"Lanson Place Causeway Bay","description":"An iconic luxury hotel in Causeway Bay, Hong Kong, Lanson Place offers a serene sanctuary for avid travellers and provides a mindful and restful stay.","publisher":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lansonplace.cn\/causewaybay\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Organization","Place"],"@id":"https:\/\/lansonplace.cn\/causewaybay\/#organization","name":"Lanson Place Causeway Bay","url":"https:\/\/lansonplace.cn\/causewaybay\/","logo":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo"},"image":{"@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"opens":"09:00","closes":"17:00"}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lansonplace.cn\/causewaybay\/stayconnected\/#local-main-organization-logo","url":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/logo-lphk.svg","contentUrl":"https:\/\/lansonplace.cn\/causewaybay\/wp-content\/uploads\/sites\/4\/logo-lphk.svg","width":143,"height":64,"caption":"Lanson Place Causeway Bay"}]}},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/pages\/5676","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/comments?post=5676"}],"version-history":[{"count":6,"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/pages\/5676\/revisions"}],"predecessor-version":[{"id":5708,"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/pages\/5676\/revisions\/5708"}],"wp:attachment":[{"href":"https:\/\/lansonplace.cn\/causewaybay\/wp-json\/wp\/v2\/media?parent=5676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}