{"id":76779,"date":"2024-01-30T15:42:03","date_gmt":"2024-01-30T20:42:03","guid":{"rendered":"https:\/\/www.fqm.qc.ca\/?page_id=76779"},"modified":"2024-01-30T15:46:48","modified_gmt":"2024-01-30T20:46:48","slug":"massage-therapists-from-other-associations","status":"publish","type":"page","link":"https:\/\/www.fqm.qc.ca\/en\/becoming-a-member\/massage-therapists-from-other-associations\/","title":{"rendered":"Massage therapists from other associations"},"content":{"rendered":"<h1>Thank you for your interest in the F\u00e9d\u00e9ration qu\u00e9b\u00e9coise des massoth\u00e9rapeutes agr\u00e9\u00e9s.<\/h1>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-75985 size-full\" src=\"https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5.png\" alt=\"\" width=\"1024\" height=\"384\" srcset=\"https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5.png 1024w, https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5-300x113.png 300w, https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5-768x288.png 768w, https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5-730x274.png 730w, https:\/\/www.fqm.qc.ca\/wp-content\/uploads\/2023\/11\/Landing-page-acquisition-800-\u00d7-400-px-1024-x-384-px-5-275x103.png 275w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>We have a promotion that may be of interest to you for your membership renewal.<\/p>\n<h2>PLEASE COMPLETE THE FORM BELOW AND ALLOW OUR TEAM TO CONTACT YOU BY TELEPHONE &#8230;<\/h2>\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 4.0 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_1' ><div id='gf_1' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_1'  action='\/en\/wp-json\/wp\/v2\/pages\/76779#gf_1' data-formid='1' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_1_11\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_11'><span class='gform-field-label__text'>Email<\/span><\/label><div class='ginput_container'><input name='input_11' id='input_1_11' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_1_11'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_1_4\" class=\"gfield gfield--type-text gf_left_half gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_4'><span class='gform-field-label__text'>First name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_1_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_2\" class=\"gfield gfield--type-text gf_right_half gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_2'><span class='gform-field-label__text'>Last Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_1_2' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_7\" class=\"gfield gfield--type-phone gfield--phone-format-standard gf_left_half gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_7'><span class='gform-field-label__text'>Phone<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_7' id='input_1_7' type='tel' value='' class='large'  placeholder='(999) 999-9999' aria-required=\"true\" aria-invalid=\"false\"   data-mask=\"(999) 999-9999\" \/><\/div><\/div><div id=\"field_1_8\" class=\"gfield gfield--type-email gf_right_half gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_8'><span class='gform-field-label__text'>Email<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_8' id='input_1_8' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_1_9\" class=\"gfield gfield--type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_9'><span class='gform-field-label__text'>Subject<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_9' id='input_1_9' type='text' value='' class='large'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_6\" class=\"gfield gfield--type-textarea field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_6'><span class='gform-field-label__text'>Message<\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_6' id='input_1_6' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><div id=\"field_1_10\" class=\"gfield gfield--type-captcha gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_1_10'><span class='gform-field-label__text'>reCAPTCHA<\/span><\/label><div id='input_1_10' class='ginput_container ginput_recaptcha' data-sitekey='6LdgJmwUAAAAAGWQvIsnzPFBzR6cvt3Q4C-vATUb'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_1' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Send<\/button> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_1' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_1' id='gform_theme_1' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_1' id='gform_style_settings_1' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='CAD' value='hK6PkH6soPIh2M40lztaPVo6Gwo2If1zeH9CtqZHwT+8fOI9WeBwdl1VO3Fn9+BmAkYC6f3CyQpXGZR43AJCuhWaeU4w\/8FBWo7TE+87S9O8NU8=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_1' value='WyJ7XCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcIjZmZGM3Y2FlODdiMWFkZWRmYzRkNzc3ZWQ2NTU0NTBhXCIsXCI4NmIxODFmZjIzNDQyMjY0NGE1ZTQ2ZjE2MmI1NDliMVwiXSxcImdmb3JtX3RoZW1lXCI6XCI1ZGFhMjg4Zjk3ZjdkMGI4MjE5YjI4MDEwOTExNDZmMlwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcIjVmNTliMDViMGYwMDdlODBmODQxYzM2MDFmMmIzYmNiXCIsXCJmb3JtX2lkXCI6XCI2NWEwNGNkNDY2NGM1NjRmMGUxOGJmMjI5MTUzZWExNFwiLFwidXJsXCI6XCIxYzA4ZDZhOWE0ZDZkOTg4MDg5Yjc5MDI1ZWYwMDFlYVwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCI1YzJkOWZkYTI5M2YyODc3MWJmZTE1Y2IwYzgzOWMyZFwifSIsImYzYWYzZDFkYzgxOTg4M2Q0YTY1NzBlYTVkMDJjYzJlIiwxNzg2OTI5MzEwXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"91\"\/><script>\ndocument.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );\n<\/script>\n<\/p><\/form>\n                        <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Thank you for your interest in the F\u00e9d\u00e9ration qu\u00e9b\u00e9coise des massoth\u00e9rapeutes agr\u00e9\u00e9s. We have a promotion that may be of interest to you for your membership renewal. PLEASE COMPLETE THE FORM BELOW AND ALLOW OUR TEAM TO CONTACT YOU BY TELEPHONE &#8230;<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":4642,"menu_order":4,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":"","_members_access_role":[],"_members_access_error":""},"class_list":["post-76779","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/pages\/76779","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/comments?post=76779"}],"version-history":[{"count":3,"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/pages\/76779\/revisions"}],"predecessor-version":[{"id":76786,"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/pages\/76779\/revisions\/76786"}],"up":[{"embeddable":true,"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/pages\/4642"}],"wp:attachment":[{"href":"https:\/\/www.fqm.qc.ca\/en\/wp-json\/wp\/v2\/media?parent=76779"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}