Thanks for being responsive and the help thus far. Unfortunately this is still not working. I needed to be sure that it was neither how/where I placed the code, nor the facebook account, so here's what I did:
1) Logged into
www.jtest.us as administrator and double-checked - "Display API Errors on Front-end" is enabled
2) On pages, "JFBConnect" and "write_to_facebook" I enabled both JFBCLogin and JFBCFeed.
3) Edited $webhome/modules/mod_jfbcfeed/tmpl/default.php. Just below the "if($params->get('showPoweredByLink'))" function I added the following lines:
<?php
$rand = substr(md5(uniqid(rand(),1)),3,

;
require_once (JPATH_ROOT.DS.'components'.DS.'com_jfbconnect'.DS.'libraries'.DS.'facebook.php');
$jfbcLibrary = JFBConnectFacebookLibrary::getInstance();
if ($jfbcLibrary->getUserId()) // Check if Facebook thinks there's a user logged in
$jfbcLibrary->setFacebookMessage("Posting this message via mod_jfbcfeed $rand");
echo "<h2 style='background: #ff0000; color: #fff; padding: 5px; margin: 10px;'>mod_jfbfeed</h2><p>I added the code to post to facebook at the bottom of the mod_jfbfeed default.php file (above this text). It doesn't error out, but it also does not post. <strong>Display API Errors on Front-end</strong> is enabled.</p>";
?>
4) So, any time you load this page it should attempt to make a post. I added the $rand because so that Facebook doesn't get confused by you attempting to post the same status message twice. I load either of the two active pages, write_to_facebook in this case
5) The echo statement is there below JFBCFeed module but no FaceBook errors.
6) I logged into the fake account on Facebook,
This email address is being protected from spambots. You need JavaScript enabled to view it. - unfortunately I see no post
7) Just to be sure, I created a second account,
This email address is being protected from spambots. You need JavaScript enabled to view it., also a test Facebook account, and try there as well. Nothing... The only comment is the one I added when I set up the account.
If you need any images to see that I'm doing this write I'll attach them. If you need an administrative account on
www.jtest.us say the word. Do you see anything else obvious?