Quote:
Originally Posted by BirdOPrey5
Are these random numbers made up by us or are they generated somewhere? How many digits- does it matter?
|
Those numbers are your facebook profile ID, you'll find this in the address bar when you sign in to facebook.
If you have assigned your profile a custom "name", please read this:
http://www.ehow.com/how_5753004_facebook-id.html
Quote:
Originally Posted by BirdOPrey5
Also- why would I only want to show the comment box to guests? Wouldn't I want anyone to be able to make a comment when they Like something?
|
Replace:
PHP Code:
<br />
<!-- Facebook Comment -->
<if condition="in_array($bbuserinfo[usergroupid],array(2,6,7,5))"><else /><div align="center">
<fb:comments numposts="3" width="800"></fb:comments></if></div>
<!-- / Facebook Comment -->
With:
PHP Code:
<br />
<!-- Facebook Comment -->
<div align="center">
<fb:comments numposts="3" width="800"></fb:comments></if></div>
<!-- / Facebook Comment -->
Now all members and guests can see and write in the comment box.