<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Quarantine area for comments plug in</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Quarantine-area-for-comments-plug-in-79673</link>
        <description></description>
        <pubDate>Sat, 11 Jul 2026 19:24:21 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Quarantine-area-for-comments-plug-in-79673" rel="self" type="application/rss+xml" />

                <item>
          <title>Quarantine area for comments plug in</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234822#post2234822</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Thanks for the reply.</p>
<p>I was over complicating things. All I needed to do was copy and paste the comments code, change the values and job done!</p>
<p>A great plugin.</p>
<p>Cheers,</p>
<p>Jeff</p>]]></description>
          <pubDate>Fri, 29 Aug 2014 00:23:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234822#post2234822</guid>
        </item>
                <item>
          <title>Quarantine area for comments plug in</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234819#post2234819</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>Are you making the comments appear on a detail page for a particular record? So if you're using a getRecords function to retrieve a detail record for your page, the _wsc_example_records would be an example of the code loading that record.</p>
<p>So the idea is that comments are linked to a particular record you've created in one of your sections, and the comments will only be displayed for that particular record.</p>
<p>If you're not loading the details of a particular record on the page, you wouldn't need anything like the _wsc_example_records getRecords function, you could just modify the comments code to have unique values.</p>
<p>Hopefully that helps.</p>
<p>Cheers,</p>
<p>Greg</p>
]]></description>
          <pubDate>Thu, 28 Aug 2014 15:46:05 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234819#post2234819</guid>
        </item>
                <item>
          <title>Quarantine area for comments plug in</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234816#post2234816</link>
          <description><![CDATA[<p>Thanks Greg. I have purchased the plugin and your solution worked a charm.</p>
<p>Please could you help with another problem I have had setting up the plugin. I think I have misunderstood the instructions!</p>
<p>I have added the following code to my product page:</p>
<p><code>&lt;!-- DISPLAY COMMENTS --&gt;<br />&lt;?php<br /><br />  wsc_comments(array(<br />    'tableOrTag' =&gt; 'die_adapters',    // Section these comments are associated with, such as: "articles", "blog", "about_us".<br />    'recordNum'  =&gt; $record['num'],            // Record num these comments are associated with, such as: $record['num'] or 1<br />    'themeName'  =&gt; 'custom',                 // HTML theme to display comments with, from /plugins/websiteComments/themes<br />    'pageName'   =&gt; $record['name'],           // Page name displayed in comment notification emails, such as: $record['title'] or "Custom Text"<br />    'pageUrl'    =&gt; realurl($record['_link']), // Page URL displayed in comment notification emails, such as realurl($record['_link'])<br />  ));<br /><br />?&gt;<br />&lt;!-- /DISPLAY COMMENTS --&gt;</code></p>
<p>I have also added the following code to the head of my file. I assume this needs to be changed - and you have included it as a sample only - but after hours of head-scratching i can't work out what exampleRecords, exampleMetaData etc should be changed to.</p>
<p><code>// load records<br />  list($exampleRecords, $exampleMetaData) = getRecords(array(<br />    'tableName'   =&gt; '_wsc_example_records',<br />    'where'       =&gt; whereRecordNumberInUrl(1), // If no record number in url just load first record<br />    'limit'       =&gt; '1',<br />  ));<br />  $record = @$exampleRecords[0]; // get first record<br />  if (!$record) { dieWith404("Record not found!"); }  // show error message if no matching record is found<br /> </code></p>
]]></description>
          <pubDate>Thu, 28 Aug 2014 12:07:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234816#post2234816</guid>
        </item>
                <item>
          <title>Quarantine area for comments plug in</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234776#post2234776</link>
          <description><![CDATA[<p>Hey Jeff,</p>
<p>Unfortunately this is not part of the current plugin, but it would be very easy to add. You'd need to add a hidden check box field to the _wsc_comments section, then add the following at line 161 of the websiteComments.php plugin:</p>
<p><code>  // add comment<br />  mysqlStrictMode(false); // disable Mysql strict errors for when a field isn't defined below (can be caused when fields are added later)<br />  $newCommentNum = mysql_insert('_wsc_comments', array(<br />    'createdDate='     =&gt; 'NOW()',<br />    'createdByUserNum' =&gt; $CURRENT_USER['num'],<br />    'comment'          =&gt; trim($_REQUEST['wsc_comment']),<br />    'tableOrTag'       =&gt; $_REQUEST['_wsc_tableOrTag'],<br />    'recordNum'        =&gt; $_REQUEST['_wsc_recordNum'],<br /><span style="color:#339966;">    'hidden'            =&gt; '1',</span><br />  ));</code></p>
<p>Then when a comment is added, the site administrator would just need to uncheck the hidden field to get the comment to display. Site administrators are e-mailed when a new comment is added to a site by default.</p>
<p>If you'd set up the website comments plugin on your site, it would not take us long at all to integrate this feature. You can send an e-mail to consulting@interactivetools.com, and we give you a price for adding it.</p>
<p>Thanks!</p>
<p>Greg</p>]]></description>
          <pubDate>Tue, 19 Aug 2014 10:52:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234776#post2234776</guid>
        </item>
                <item>
          <title>Quarantine area for comments plug in</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234772#post2234772</link>
          <description><![CDATA[<p>I plan to buy the comments plugin but before I do I wondered if it had the facility for all comments to go into a quarantine area so that the website owner can read them before they go live. If this function is not part of the existing plug in please could you provide a cost for some custom consulting</p>
<p>Thanks</p>
]]></description>
          <pubDate>Tue, 19 Aug 2014 08:55:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234772#post2234772</guid>
        </item>
              </channel>
    </rss>
  