There seems to be a JavaScript error coming from wd-facebook-feed plugin, please try disabling it and see if it helps. If it does you will need to ask the plugin author for help. He should make the buttons functional when using the text editor in the frontend or disable the buttons in the frontend at all.
In the meantime you should be able to use WPAdverts with text editor disabled, to do that add the code below in your theme functions.php file
add_filter( "adverts_form_load", "disable_adverts_tinymce" );
function disable_adverts_tinymce( $form ) {
if( $form['name'] != "advert" ) {
return $form;
}
foreach( $form["field"] as $key => $field ) {
if( $field["name"] == "post_content" ) {
$form["field"][$key]["mode"] = "plain-text";
}
}
return $form;
}