Hi @lolitomon ,
I need to clarify this part:
> I’ll fixed manage business issues and now i can select it but also have problem to connect to facebook
Activating that toggle during connection should fix the issue, as your connection won’t work without it. If it’s not working, then the code snippet will give more information about any other errors when you try to connect with “Manage Your Business” active.
It also looks like the code snippet may have been off. It should look like this:
add_filter( 'wc_facebook_connection_proxy_url', function() { return 'https://wc-connect-test.skyverge.com/auth/facebook/'; } );
But it looks like some of the characters may have been mangled, as you said you added this:
add_filter( ‘wc_facebook_connection_proxy_url’, function() { return ‘https://wc-connect-test.skyverge.com/auth/facebook/’; } );
I see “smart quotes” in the paste (the code has this character: '
, but what you shared has ‘
and ’
) and ’
instead the final '
mark. This means the copy/paste operation on your computer may have “re-interpreted” those quotes, and the PHP language won’t understand them.
May I ask how you added the code? The safest way may be to use the Code Snippets plugin. Make sure you set it to run always instead of one time, that all the characters match exactly, and that the snippet is activated before trying to reconnect.
That should give a good error message that we can use to troubleshoot further.