<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Aleo</link>
        <description></description>
        <pubDate>Sat, 02 May 2026 07:28:06 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aleo&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Adding icons to selections</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242318#post2242318</link>
          <description><![CDATA[<p>Hi,</p>
<p>If that's the case you can do it by modifying the checkbox input to include the icon image. For example, if a checkbox looks like this:</p>
<p><code>&lt;input type="checkbox" id="example" name="example" value="1" /&gt;<br />&lt;label for="example"&gt;Example&lt;/label&gt;</code></p>
<p>You can include the icon by:</p>
<p><code>&lt;input type="checkbox" id="example" name="example" value="1" /&gt;<br />&lt;label for="example"&gt;&lt;img src="path/to/image" /&gt;&lt;/label&gt;</code></p>

<p>However, if you want it to have it like your example as the checkbox is hidden, you will have to use javascript/jQuery to create a similar experience.</p>
<p>Let me know if you have any questions.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 20 Jul 2018 11:42:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242318#post2242318</guid>
        </item>
                <item>
          <title>Adding icons to selections</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242311#post2242311</link>
          <description><![CDATA[<p>Hi,</p>
<p>Do you want to add icons on the front-end pages of your website or you want to add it to the cmsb pages where the checkboxes are shown?</p>]]></description>
          <pubDate>Thu, 19 Jul 2018 10:31:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242311#post2242311</guid>
        </item>
                <item>
          <title>Website Membership Registration form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242310#post2242310</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>I have just tested the feature locally and it works without an issue. Could you let me know what does the returning email look like? Also make sure the $user variable has the fields you want to pass as placeholders.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 19 Jul 2018 10:21:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242310#post2242310</guid>
        </item>
                <item>
          <title>Passing a variable from URL in query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242309#post2242309</link>
          <description><![CDATA[<p>Hi,</p>
<p>Your url parameters will all be in the variable $_REQUEST. For example if you url looks like this: index.php?video_category=2, you will have this variable $_REQUEST['video_category'] equals 2. So your where statement can be something like this: 'video_category = "%\t' . $_REQUEST['video_category'] . '\t%"'. Note that if you didn't pass "video_category" parameter in the url and call $_REQUEST['video_category'], it will give you an error sayting $_REQUEST['video_category'] doesn't exist. So it's better to do an if(empty($_REQUEST['video_category'])) check before using it.</p>

<p>Let me know if you have any questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 19 Jul 2018 09:42:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242309#post2242309</guid>
        </item>
                <item>
          <title>Using a pic as the link in a combo page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242292#post2242292</link>
          <description><![CDATA[<p>Hi,</p>
<p>The combo page generator does not support this feature by default, However, you can make it happen by a few simple steps:</p>
<p>1. In the combo page, find where the getRecords() is called for "text list" records and change the "loadUploads" option to be true. By default, it will look something like this:</p>
<p><code>list($booksRecords, $booksMetaData) = getRecords(array(<br />'tableName'   =&gt; 'books',<br />'loadUploads' =&gt; true,<br />'allowSearch' =&gt; false,<br />));<br /></code></p>

<p>2. Find where the "text list" is generated. Modify the list to show image uploads or whatever information you want for the list:</p>

<p><code>&lt;!-- STEP2: Display Record List (Paste this where you want your record list) --&gt;<br />    &lt;b&gt;Record List&lt;/b&gt;&lt;br/&gt;<br />    &lt;?php foreach ($booksRecords as $listRecord): ?&gt;<br />      &lt;?php $isSelected = ($listRecord['num'] == $detailRecord['num']); ?&gt;<br />      &lt;?php if ($isSelected) { print "&lt;b&gt;"; } ?&gt;<br />      &lt;a href="&lt;?php echo htmlencode($listRecord['_link']) ?&gt;"&gt;<span style="color:#ff0000;">&lt;img src="&lt;?php echo $listRecord['images'][0]['urlPath'] ?&gt;" /&gt;</span>&lt;/a&gt;&lt;br/&gt;<br />      &lt;?php if ($isSelected) { print "&lt;/b&gt;"; } ?&gt;<br />    &lt;?php endforeach ?&gt;</code></p>

<p>If you want to use the thumbnail instead of the original image, change "urlPath" to "thumbUrlPath".</p>
<p>Let me know if you got any questions!</p>]]></description>
          <pubDate>Mon, 16 Jul 2018 10:48:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242292#post2242292</guid>
        </item>
                <item>
          <title>filtering results at point of listing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242287#post2242287</link>
          <description><![CDATA[<p>Hi,</p>
<p> You can get the full list of records and use array_groupBy() to categorize them by services_provided field. Here is a reference of a forum post showing how to use it: <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2239479#post2239479" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2239479#post2239479</a>.</p>

<p>Let me know if you have any questions!</p>]]></description>
          <pubDate>Wed, 11 Jul 2018 11:13:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242287#post2242287</guid>
        </item>
                <item>
          <title>print pdf and make it file in upload field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242278#post2242278</link>
          <description><![CDATA[<p>Hi Karls,</p>
<p>If you go to your cmsb admin page with this parameter in the url: admin.php?menu=uploads, you can get to the page containing all the upload information. When you have your pdf generated you can add a new record to this section with proper information.</p>

<p>Let me know if you have any questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 06 Jul 2018 09:41:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242278#post2242278</guid>
        </item>
                <item>
          <title>mysql_count</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242275#post2242275</link>
          <description><![CDATA[<p>Hi,</p>
<p>Here is an example of mysql_count usage:</p>
<p><code>mysql_count('products', 'type = "' . $type . '"');</code></p>
<p>Let me know if you have any questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 05 Jul 2018 09:57:58 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242275#post2242275</guid>
        </item>
                <item>
          <title>Missing PHP extensions?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242255#post2242255</link>
          <description><![CDATA[<p>Hi Andreas,</p>
<p>I think updating CMSB version to the newest (3.12+) will solve the problem! Let me know if you find any issues updating or just general questions.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 29 Jun 2018 15:40:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242255#post2242255</guid>
        </item>
                <item>
          <title>Missing PHP extensions?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242253#post2242253</link>
          <description><![CDATA[<p>Hi Andreas,</p>
<p>Did your or the hosting company updated PHP version? What is the CMSB version and PHP version that you are running right now?</p>]]></description>
          <pubDate>Fri, 29 Jun 2018 12:46:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242253#post2242253</guid>
        </item>
                <item>
          <title>Developer Error Log</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242252#post2242252</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>It's not a temporary fix, you have some other options to resolve it but this is the best and fastest way to solve it. There are no significant security concerns as far as I know. To know more about sql strict mode you can check it here: <a href="https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sql-mode-strict" rel="nofollow">https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sql-mode-strict</a></p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 29 Jun 2018 12:02:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242252#post2242252</guid>
        </item>
                <item>
          <title>Developer Error Log</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242247#post2242247</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>No it's a typo. It should be maxRecords.</p>
<p>The "true" disables sql strict mode temporarily so that integer fields takes empty value as valid input.</p>]]></description>
          <pubDate>Thu, 28 Jun 2018 10:09:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242247#post2242247</guid>
        </item>
                <item>
          <title>Developer Error Log</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242245#post2242245</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Can you try Changing the mysql_insert to:</p>
<p><code>mysql_insert('_accesslist', array(<br /> ...<br /> 'maxRecords' =&gt; '',<br /> ...<br />), true);</code></p>
<p>Let me know if you are still getting errors!</p>]]></description>
          <pubDate>Thu, 28 Jun 2018 09:41:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242245#post2242245</guid>
        </item>
                <item>
          <title>Developer Error Log</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242243#post2242243</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Sorry I didn't realize it's generated by the website membership plugin. In that case, can you try setting it to be null?</p>

<p>Let me know if it works.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Wed, 27 Jun 2018 11:42:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242243#post2242243</guid>
        </item>
                <item>
          <title>Developer Error Log</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242240#post2242240</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Change maxRecords to 0 should fix the error.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Wed, 27 Jun 2018 10:15:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242240#post2242240</guid>
        </item>
                <item>
          <title>permalink use record &apos;num&apos; field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242238#post2242238</link>
          <description><![CDATA[<p>Hi,</p>
<p>You can send your cms builder and ftp access information to support@interactivetools.com, and we can take a look at the issue. Also please attach the exact link to the record that has this issue.</p>

<p>Thanks,</p>]]></description>
          <pubDate>Tue, 26 Jun 2018 09:46:05 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242238#post2242238</guid>
        </item>
                <item>
          <title>Custom 404 Error Page with Permalinks plugin</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242233#post2242233</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Yes, it is because of the redirecting. I would recommend you modify the 404 page to add the libraries you need.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Mon, 25 Jun 2018 11:11:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242233#post2242233</guid>
        </item>
                <item>
          <title>permalink use record &apos;num&apos; field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242232#post2242232</link>
          <description><![CDATA[<p>Hi, </p>
<p>Is the permalink field set to be required or are you logged in as a non-admin user? When I test it with the admin account (And permalink not being admin only) and not required permalink field it works.</p>]]></description>
          <pubDate>Mon, 25 Jun 2018 10:55:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242232#post2242232</guid>
        </item>
                <item>
          <title>Sort search results by field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242223#post2242223</link>
          <description><![CDATA[<p>Hi,</p>
<p>To show the first image of a record, you can directly use the first element of uploads field. For example: $record['images'][0]['urlPath'] will be the url path of the first element of "images" field uploads.</p>

<p>To organize the record array by let or others, you can manually set the if statement to pick them out first. For example:</p>

<p><code>foreach($itemsGroupByLamping['led'] as $record){<br />  // Display LED records<br />}<br /><br />foreach($itemsGroupByLamping as $category =&gt; $records){<br />  if($category !== 'led'){<br />    // Display other records<br />  }<br />}</code></p>

<p>Or you can set order by to make led records the first of the array and use 1 foreach loop to display them all.</p>
<p>Let me know if you have any questions.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 22 Jun 2018 11:34:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242223#post2242223</guid>
        </item>
                <item>
          <title>nl_manage.php - Choose Mailing Lists to subscribe to</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242222#post2242222</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>On your nl_manager.php or other pages that generates the list of newsletter lists, you can add an if statement to select which list you want to show. For example:</p>

<p><code>&lt;?php foreach($lists as $list): ?&gt;<br />...<br />&lt;?php if($list['num'] == 1): ?&gt;<br />...<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach ?&gt;</code></p>
<p>Hope that answers your question and let me know if you need more help!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 22 Jun 2018 11:14:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242222#post2242222</guid>
        </item>
                <item>
          <title>permalink use record &apos;num&apos; field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242221#post2242221</link>
          <description><![CDATA[<p>Hi,</p>
<p>I have tested the permalinks plugin locally and it works with num field being used to created permalinks. Could you provide more details about what you want to achieve so we can identify what your issue is?</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 22 Jun 2018 10:47:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242221#post2242221</guid>
        </item>
                <item>
          <title>Pill box list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242216#post2242216</link>
          <description><![CDATA[<p>Hi Kenney,</p>
<p>Can you try changing <span>join('&lt;li&gt; ', $record['features:labels']); to <span>join('&lt;/li&gt;&lt;li&gt;', $record['features:labels']); And let me know if that is what you want?</span></span></p>
<p><span><span>Thanks,</span></span></p>]]></description>
          <pubDate>Thu, 21 Jun 2018 16:25:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242216#post2242216</guid>
        </item>
                <item>
          <title>Skip duplicate records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242212#post2242212</link>
          <description><![CDATA[<p>Hi Hiroko,</p>
<p>That looks good to me!</p>]]></description>
          <pubDate>Wed, 20 Jun 2018 09:55:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242212#post2242212</guid>
        </item>
                <item>
          <title>Sort search results by field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242207#post2242207</link>
          <description><![CDATA[<p>Hi,</p>
<p>You can use array_groupBy() to get the results separated by a field. Here is an example:</p>
<p><code>// For $itemsRecords:<br />$itemsGroupByLamping = array_groupBy($itemsRecords, 'lamping', true);<br /></code></p>
<p>That will give you an array of records grouped by their "lamping" category. The next thing you need is to loop through them and display:</p>
<p><code>foreach($itemsGroupByLamping as $category =&gt; $records){<br /> // Display the category.<br /> foreach($records as $record){<br />  // Display the record.<br /> }<br />}</code></p>
<p>Hope this helps you to solve the problem. If you need further help feel free to send the details to consulting@interactivetools.com.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Tue, 19 Jun 2018 13:22:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242207#post2242207</guid>
        </item>
                <item>
          <title>Moved website to another host - experiencing issues now</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242202#post2242202</link>
          <description><![CDATA[<p>Hi Shawn,</p>
<p>We are glad to help you. However, we need some details to identify the issues:</p>
<p>1. What are the login issues and database issues specifically?</p>
<p>2. What steps did you take to create the issues?</p>
<p>3. What are the error messages showing for the issues?</p>
<p>If you have concerns about posting some of the information on the forum, you can always send them to support@interactivetools.com.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 14 Jun 2018 15:50:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242202#post2242202</guid>
        </item>
              </channel>
    </rss>
  