When checking the code generated at Facebook, these two parameters are coded like:

data-force-wall
data-show-faces

The current code of the Drupal module generates data-force_wall and data-show_faces which led to the parameter not correctly interpreted in my tests. It even could be that the setting was random.

The correction is to change all strings 'force_wall' and 'show_faces' in the file /plugins/fb_plugins/likebox.inc to 'force-wall' and 'show-faces'. That solved the problem in my case.

Shortly I'll post a patch that corrects that behaviour.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

meichr’s picture

The promised patch.