I attempted to use the code here in the configuration of the feedgator component, but it seems it didn't parse it out too well, as when I revisited the config page, half of what I entered was actually below the text box (half in, half out).
So I worked through and found another route this evening, and I wanted to post some instructions to accomplish this:
Open administrator/components/com_feedgator/admin.feedgator.php
Goto line 738, around here you should see:
| Code: |
$fullTxt = mysql_real_escape_string($fullTxt);
$intro = mysql_real_escape_string($intro);
|
Change this section to:
| Code: |
$fullTxt = $fullTxt . "{mos_fb_discuss:10}";
$fullTxt = mysql_real_escape_string($fullTxt);
$intro = $intro . "{mos_fb_discuss:10}";
$intro = mysql_real_escape_string($intro);
|
It will insert a blank line, then add the discussion bot link in small text, centered, below the article/import.
Demo:
www.myvento.net
and
www.myvento.net/content/blogcategory/36/79/
Hope this saves someone else some time
EDIT: HTML codes not displaying in the forum code block?
I've attached my admin.feedgator.php file, note this is for version 0.96!!