I know this is available in Wordpress. But in SMF? I wonder. I notice that some sites are grabbing posts from an smf forum site that I manage. Is there any mod that would automatically put a source link for every grabbed post?
It seems that they are grabbing posts via the RSS Feeds. No, they are not posting it manually. Everything is done automated.
Which SMF version are you running? A temporary fix, that I can think of, is that you can add a line to one of the files. This would be added to the content so that before the post is added to the database, an extra line is tagged on so that it will add your link. This should hopefully stop the use of the RSS Feeds. I can't find a modification for it at the moment, but maybe we can add a custom line of PHP?
There is no available MOD at this time, Rockinaway. Yes, a custom line of php should solve this problem. Can you suggest one for SMF's RSS? We're running SMF 1.1.10 Version.
A temporary solution. Go to Sources/Post.php open it up and find // Collect all parameters for the creation or modification of a post. $msgOptions = array( 'id' => empty($_REQUEST['msg']) ? 0 : (int) $_REQUEST['msg'], 'subject' => $_POST['subject'], 'body' => $_POST['message'], Code (markup): Replace this with: // Collect all parameters for the creation or modification of a post. $msgOptions = array( 'id' => empty($_REQUEST['msg']) ? 0 : (int) $_REQUEST['msg'], 'subject' => $_POST['subject'], 'body' => $_POST['message'].'<br /><br />Content Copyright <a href="http://www.url.com">Website Name</a>', Code (markup): Just change the URL, hopefully this should work. Try it and let me know
Hi Rockinaway, Unfortunately, the modification does not work. The URL did not show up in RSS or in Regular Posts. There must be a way.