Hello,
thank you very much for this awesome module. :)
Is it possible to put the facebook stream from user/%/status and the textarea together in a block or view?
An example of what I mean does already exist on the conversation page between user A and user B -> statuses/conversation/userA,userB
I work with quicktabs and would like to create a kind of "wall" tab where the statuses (user/%/status) are and above the facebook textarea.
I already tried to print things manually in a block and show on user profile but it didn't work:
<div class="user-status">
<?php echo $account->content['facebook_status']['status']['#value']; ?>
</div>
<div class="user-wall">
<?php $block = module_invoke('views' ,'block', 'view', 'facebook_status-block_1'); ?>
<?php print $block['content'] ."\n"; ?>
</div>
Your help is much appreciated. :)
Kind regards,
Stefan
Comments
Comment #1
icecreamyou commentedhttp://drupal.org/node/435676#auto
Comment #2
design.er commentedThank you very much for your quick reply.
It works fine so far but I noticed an issue with QuickTabs. It seems that QT's JavaScript is killing the character countdown of FBSS. I think this is by design.
I attached a screenshot of this issue - FYI if support requests may come for this in the future.
Comment #3
icecreamyou commentedThat's probably a symptom of #518076. Essentially Quicktabs might be including the status update form and/or the related JavaScript more than once. The most noticeable result of that would be what you've observed - a character count of
NaNor192,192. I'm not sure exactly what can be done about that, if anything, but I'll try to talk to the Quicktabs maintainers and resolve this problem at some point because I will probably need to implement something similar to what you're doing in the next few months as well.Comment #4
design.er commentedAt the moment I simply hide the chars countdown but it would be great to have a working solution, of course.
I'm looking forward to hear from you in this or #518076: NaN characters remaining thread.
Thank you very much for your time. :)