<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Re: Simple Forum 1.03 Released</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Re-Simple-Forum-1_03-Released-82468</link>
        <description></description>
        <pubDate>Mon, 15 Jun 2026 01:00:51 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Re-Simple-Forum-1_03-Released-82468" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: Simple Forum 1.03 Released</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245694#post2245694</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>You could add a condition to the "<span>auto-subscribe to thread" function call in the <strong>forums-topics-create.php</strong> file and the <strong>forum-posts-reply.php</strong> file and a checkbox field to the form itself.  That way a user could check the box to subscribe and leave it blank if they didn't want to.  Or default to checked and the user could uncheck if they didn't want to subscribe.  Example code below.</span></p>
<p>Replace this code</p>
<pre class="language-php"><code>// auto-subscribe to thread
sforum_db_setUserFollowingTopic($CURRENT_USER['num'], $topic['num'], 1);</code></pre>
<p>With this code</p>
<pre class="language-php"><code>// auto-subscribe to thread
if(!empty($_REQUEST['subscribe'])) {
  sforum_db_setUserFollowingTopic($CURRENT_USER['num'], $topic['num'], 1);
}</code></pre>
<p>And add this code to the form</p>
<pre class="language-markup"><code>&lt;div class="row vertical-spacer-10"&gt;
  &lt;div class="col-xs-12 text-right"&gt;
    &lt;input type="hidden" name="subscribe" value="0"&gt;
    &lt;input type="checkbox" name="subscribe" id="subscribe" value="1"&gt;
    &lt;label for="subscribe"&gt;Subscribe to thread updates&lt;/label&gt;
  &lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>After this line in the <strong>forums-topics-create.php</strong> file</p>
<pre class="language-php"><code>&lt;?php echo sforum_html_post_editor(@$_REQUEST['subject'], @$_REQUEST['message'], null, @$_REQUEST['showPoll']); ?&gt;</code></pre>
<p>And after this line in the <strong>forum-posts-reply.php</strong> file</p>
<pre class="language-php"><code>&lt;?php echo sforum_html_post_editor(@$_REQUEST['subject'], @$_REQUEST['message']); ?&gt;</code></pre>]]></description>
          <pubDate>Tue, 26 Oct 2021 09:19:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245694#post2245694</guid>
        </item>
                <item>
          <title>Re: Simple Forum 1.03 Released</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245661#post2245661</link>
          <description><![CDATA[<p>In response to: <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2242362#post2242362" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2242362#post2242362</a></p>
<p>The default in the plugin is to subscribe to a forum that you have commented on. Is it possible to disable this feature? I still want to offer the ‘subscribe to thread’ but make it opt-in.</p>
<p>thanks</p>]]></description>
          <pubDate>Fri, 08 Oct 2021 12:10:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245661#post2245661</guid>
        </item>
              </channel>
    </rss>
  