Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Miguel Sirvent

    (@poxtron)

    I do not understand what you are trying to say. What do you mean by name not comming up?

    I see your site is in spanish you can talk to me in spanish if you like.

    Thread Starter bryant1410

    (@bryant1410)

    That the variable fb_data does not contain the index ‘name’

    Plugin Author Miguel Sirvent

    (@poxtron)

    Was this working before and then it stoped working? or did you create a new facebook app.

    I ask because if it is a new app it is probable that the facebook api only lets it use the new 2.4 version.

    Also you shouldn’t change the code of the plugin you can alter the query to the api via filters. You could do something like this on your functions.php file.

    add_filter('wpemfb_api_string','wpemfb_api_string_filter');
    wpemfb_api_string_filter($api_string,$fb_id,$type){
        if($type=='video'){
            return '?fields=name,source,picture';
        } else {
            return $api_string;
        }
    }

    You can use this tool to see what data your app is getting from facebook.

    Thread Starter bryant1410

    (@bryant1410)

    Yes, it stopped working, but I was using no app before (without app) and recently I added a facebook app (because otherwise it wasn’t working). It may be 2.4, yes. Are you planning to support it?

    Ok. Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘'name' index undefined in video embed and also videos are not embedded’ is closed to new replies.