-
AuthorPosts
-
October 23, 2016 at 2:35 pm #702997
I’d like to add the Send To Messenger Plugin as my main Call to action on my website. It is a button that authentifies the user and sends her to Messenger, to start a conversation.
https://developers.facebook.com/docs/messenger-platform/plugin-reference/send-to-messenger
Can this be done? I want this button to be the main call to action, right under my tagline.
Thanks a lot.
October 24, 2016 at 7:09 am #703133Hey antoninlivebotter,
I’m not sure, did you try adding the code to a Code Block element? If you should need any further help then please post a link to your site.
Best regards,
RikardOctober 24, 2016 at 11:22 am #703201I tried adding a Code block but nothing appeared, I must have made errors. I added links to website+credentials
Also, I’m not able to upload a logo with the right size, don’t know why haha!
October 26, 2016 at 3:32 pm #704354Hi,
Please add following code to Functions.php file in Appearance > Editor
function av_send_to_messenger(){ ?> <script> window.fbAsyncInit = function() { FB.init({ appId: "APP_ID", xfbml: true, version: "v2.6" }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <?php } add_action('wp_footer', 'av_send_to_messenger');
Then add following code into text tab of Text Block element or Code Block element
<div class="fb-send-to-messenger" messenger_app_id="APP_ID" page_id="PAGE_ID" data-ref="PASS_THROUGH_PARAM" color="blue" size="standard"> </div>
And change the attributes as needed
Best regards,
YigitOctober 27, 2016 at 6:49 pm #704962Hey so I did all that but it didn’t work :(. The code block appears but there’s nothing in it.
October 27, 2016 at 8:10 pm #704993 -
AuthorPosts
- You must be logged in to reply to this topic.