So I figured out my issue, but I did not use the gfeed plugin. I looked into the Google Feed API and figured it out. The api is not as hard to learn as I thought, and I am not a programer. Here are the resources that I found helpful in finding out my solution:
Here is just the feed script code:
<script type="text/javascript">
/*
* How to use the Feed Control to grab, parse and display feeds.
*/
google.load("feeds", "1");
function OnLoad() {
// Create a feed control
var feedControl = new google.feeds.FeedControl();
// Add one feed.
feedControl.addFeed("YourRSSFeed", "YourRSSFeedTitle");
// Options
feedControl.setLinkTarget("google.feeds.LINK_TARGET_BLANK");
feedControl.setNumEntries(4);
// Draw it.
feedControl.draw(document.getElementById("YourDIVName"));
}
google.setOnLoadCallback(OnLoad);
</script>
You'll need to include the jquery and google feed api files to make this work. Hope this is helpful.
Jonathan