• Resolved jrwstevenson

    (@jrwstevenson)


    Hi, Thanks for the awesome plugin.

    I’m having an issue with the Post Body textarea. I would like to use the Rich textarea in my front end form, but I’m getting an unresponsive white box without controls appear.

    Google Chrome’s console is telling me that ReferenceError: ffwd_plugin_url is not defined. I then deactivate Facebook Feed WD and the Rich textarea works perfectly.

    I have been able to use the Teeny Rich textarea regardless of any other plugin being activated or not.

    Would appreciate your help.

    Regards,
    James

    • This topic was modified 7 years, 3 months ago by jrwstevenson.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @jrwstevenson,

    I have checked Facebook Feed WD plugin with WP User Frontend plugin and found the Rich Textarea issue. It seems Normal & Teeny Rich Textarea works fine which you can use instead of Rich Textarea.

    I am going to forward this conflicting issue to our development team. It may take a few weeks to fix as we have some exciting features to add in the next update.

    Thank you

    Thread Starter jrwstevenson

    (@jrwstevenson)

    Hello @rabbii

    Thank you for looking into this. I’m glad that the error was repeatable and hope that its a easy fix for you. I will continue to use Teeny Rich Textarea for the time being.

    Looking forward the update and new features!

    Regards.

    Hello @jrwstevenson,

    Please include the following lines of code toward the end of your functions.php, which is located in your theme folder. It will solve the issue.

    if ( function_exists('ffwd_activate') ) {
        remove_filter( 'mce_external_plugins', 'ffwd_register' );
        remove_filter( 'mce_buttons', 'ffwd_add_button', 0 );
    
        if ( is_admin() ) {
            add_filter( 'mce_external_plugins', 'ffwd_register' );
            add_filter( 'mce_buttons', 'ffwd_add_button', 0 );
        }
    }

    Let me know the updates.

    Thank you

    Thread Starter jrwstevenson

    (@jrwstevenson)

    Hello @rabbii

    Worked a treat!

    Thank you for finding a solution. Much appreciated!

    Regards
    James

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Conflict with Facebook Feed WD’ is closed to new replies.