Workaround for setup issue
-
You can get around the too many redirects issue by going to the Facebook Chat settings page in your WordPress instance.
Use Developer tools (F12) to run the following JS snippet. Change your page_id to your page ID (Page > About > scroll to bottom).
var page_id = 12345689012345; var locale = "en_US"; var data = { 'action' : 'fbmcc_update_options', 'pageID' : fbmcc_sanitizeNumbersOnly(page_id), 'locale' : fbmcc_sanitizeLocale(locale), '_wpnonce' : ajax_object.nonce, }; jQuery.ajax({ type: 'POST', url: ajax_object.ajaxurl, data: data, success: function(results) { jQuery('#fbmcc-page-params').css('display', 'inline-block'); } });
Make sure domain is setup in the Meta Business Suite: https://business.facebook.com/latest/inbox/settings/chat_plugin
- The topic ‘Workaround for setup issue’ is closed to new replies.