<?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%3Ajasmar222</link>
        <description></description>
        <pubDate>Sat, 25 Apr 2026 19:11:46 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ajasmar222&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Is there a way to the same detail page template for different sections?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248385#post2248385</link>
          <description><![CDATA[<p>Ok, i think i have a working solution so I am sharing in case it's helpful to someone else:</p>
<pre class="language-php"><code>&lt;?php
  header('Content-type: text/html; charset=utf-8');
  include_once("../cmsb/lib/viewer_functions.php");

  // get the URI and trim leading and trailing slashes
  $uri = trim($_SERVER['REQUEST_URI'], '/');

  // lookup the URI in the permalinks table to find the corresponding section
  $section = mysql_get('cmsb__permalinks', null, [
    'permalink' =&gt; $uri,
    'old'       =&gt; '0'
  ]);

  // get the tablename for the section
  if ($section) {
    $tableName = $section['tableName'];
	
    // and then load the page
    list($page, $pageMetaData) = getRecords(array(
      'tableName'   =&gt; $tableName,
      'where'       =&gt; whereRecordNumberInUrl(0),
      'loadUploads' =&gt; true,
      'allowSearch' =&gt; false,
      'limit'       =&gt; '1',
    ));
    $page = @$page[0]; // get first record
    if (!$page) { 
      header("HTTP/1.1 301 Moved Permanently");
      header("Location: /"); 
      exit;
    }
  }

?&gt;</code></pre>]]></description>
          <pubDate>Tue, 17 Mar 2026 11:30:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248385#post2248385</guid>
        </item>
                <item>
          <title>Is there a way to the same detail page template for different sections?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248384#post2248384</link>
          <description><![CDATA[<p>Currently, I have a set up like this:</p>
<ul>
<li>About pages &gt; /pgs/<strong>about-pages.php</strong></li>
<li>Contact pages &gt; /pgs/<strong>contact-pages.php</strong></li>
<li>Service pages &gt; /pgs/<strong>service-pages.php</strong></li>
</ul>
<p>Note, I am using the Permalinks plugin.</p>
<p>But I was wondering if there is a way for me to use the same page template for all of the sections?</p>
<ul>
<li>About pages &gt; /pgs/<strong>pages.php</strong></li>
<li>Contact pages &gt; /pgs/<strong>pages.php</strong></li>
<li>Service pages &gt; /pgs/<strong>pages.php</strong></li>
</ul>]]></description>
          <pubDate>Tue, 17 Mar 2026 10:38:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248384#post2248384</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248379#post2248379</link>
          <description><![CDATA[<p>This worked for me. Thank you.</p>]]></description>
          <pubDate>Mon, 09 Mar 2026 03:57:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248379#post2248379</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248377#post2248377</link>
          <description><![CDATA[<p>Ok, I am an idiot. It seems at some point I inadvertently deleted the mediaView.php file from that directory. Now that it has been restored, it's working though still with the error message. Yay!</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 16:51:00 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248377#post2248377</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248375#post2248375</link>
          <description><![CDATA[<p>Still nothing on this? this renders the media library feature somewhat useless.&nbsp;</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 15:03:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248375#post2248375</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248361#post2248361</link>
          <description><![CDATA[<p>Any news on a resolution to this bug?</p>]]></description>
          <pubDate>Fri, 27 Feb 2026 05:07:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248361#post2248361</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248357#post2248357</link>
          <description><![CDATA[<p>Happy to lend a hand in the troubleshooting process if needed.</p>]]></description>
          <pubDate>Tue, 24 Feb 2026 14:33:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248357#post2248357</guid>
        </item>
                <item>
          <title>Repeater Field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248352#post2248352</link>
          <description><![CDATA[<p>Staff bios: name, title, bio, photo, linkedin profile</p>
<p>faqs: question, answer, tags</p>
<p>sliders: photo, headline, text, link</p>
<p>feature block: photo, icon, text, link</p>
<p>—</p>
<p>Drag sort order would suffice, though being able to order by a particular field would be nice&nbsp;&nbsp;</p>
<p>Forcing min/max entries would also be nice to have</p>
]]></description>
          <pubDate>Mon, 23 Feb 2026 16:37:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248352#post2248352</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248338#post2248338</link>
          <description><![CDATA[<p>Any final resolution to this? i am experiencing this now as well.</p>]]></description>
          <pubDate>Sat, 21 Feb 2026 09:25:41 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248338#post2248338</guid>
        </item>
                <item>
          <title>Feature Request: Editor, images and media </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248336#post2248336</link>
          <description><![CDATA[<p>Also, can we get a better UI for the media library picker? that modal is impossible to use with a decent sized media library&nbsp;&nbsp;&nbsp;</p>]]></description>
          <pubDate>Mon, 16 Feb 2026 20:18:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248336#post2248336</guid>
        </item>
                <item>
          <title>Repeater Field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248293#post2248293</link>
          <description><![CDATA[<p>+10</p>
<p>a life-long dream of mine as well.</p>]]></description>
          <pubDate>Wed, 14 Jan 2026 09:40:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248293#post2248293</guid>
        </item>
                <item>
          <title>Image styles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248197#post2248197</link>
          <description><![CDATA[<p>This is called ”attribute selectors” in case you want to look into it more  </p>]]></description>
          <pubDate>Tue, 18 Nov 2025 06:05:11 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248197#post2248197</guid>
        </item>
                <item>
          <title>Image styles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248195#post2248195</link>
          <description><![CDATA[<p>In that case, add this to your css...</p>
<pre class="language-css"><code>img[style*="float:left"] {
  margin-right: 1em;
}

img[style*="float:right"] {
  margin-left: 1em;
}</code></pre>]]></description>
          <pubDate>Tue, 18 Nov 2025 05:55:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248195#post2248195</guid>
        </item>
                <item>
          <title>Image styles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248193#post2248193</link>
          <description><![CDATA[<p>When you align left/right the image, does it add an attribute to the img tag in the HTML? </p>
<p>for example...</p>
<pre class="language-markup"><code>&lt;img align="left" src="image.jpg"&gt;</code></pre>]]></description>
          <pubDate>Tue, 18 Nov 2025 05:40:33 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248193#post2248193</guid>
        </item>
                <item>
          <title>Image styles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248191#post2248191</link>
          <description><![CDATA[<p>Are adding a class to the image to get it float left/right? </p>]]></description>
          <pubDate>Tue, 18 Nov 2025 05:11:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248191#post2248191</guid>
        </item>
                <item>
          <title>Upgrading from v2.53</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248183#post2248183</link>
          <description><![CDATA[<p>I have a client site running v 2.53 that I would like to update to the latest version and I was wondering if there are special steps or considerations for such a large jump in versions. We will be doing everything on a local staging site before deploying to production.</p>]]></description>
          <pubDate>Wed, 05 Nov 2025 08:32:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248183#post2248183</guid>
        </item>
                <item>
          <title>Show Records Individually</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245404#post2245404</link>
          <description><![CDATA[<p>I think this is what you're looking for:</p>
<pre class="language-php"><code>&lt;?php foreach ($services as $record): ?&gt;
	&lt;?php if($record['title'] != "Mowing") continue; ?&gt;
	&lt;h1&gt;&lt;?php echo $record['title']; ?&gt;&lt;/h1&gt;
	&lt;?php echo $record['content']; ?&gt;
&lt;?php endforeach ?&gt;


&lt;?php foreach ($services as $record): ?&gt;
	&lt;?php if($record['title'] != "Landscaping") continue; ?&gt;
	&lt;h1&gt;&lt;?php echo $record['title']; ?&gt;&lt;/h1&gt;
	&lt;?php echo $record['content']; ?&gt;
&lt;?php endforeach ?&gt;


&lt;?php foreach ($services as $record): ?&gt;
	&lt;?php if($record['title'] != "Excavating") continue; ?&gt;
	&lt;h1&gt;&lt;?php echo $record['title']; ?&gt;&lt;/h1&gt;
	&lt;?php echo $record['content']; ?&gt;
&lt;?php endforeach ?&gt;
</code></pre>]]></description>
          <pubDate>Tue, 09 Feb 2021 14:22:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245404#post2245404</guid>
        </item>
                <item>
          <title>Category Menu - parent/child question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241872#post2241872</link>
          <description><![CDATA[<p>Any thoughts here? Please :)</p>]]></description>
          <pubDate>Thu, 22 Mar 2018 16:26:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241872#post2241872</guid>
        </item>
                <item>
          <title>Category menu help - separated presentation of level 1 and level 2</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241871#post2241871</link>
          <description><![CDATA[<p>I figured this out. </p>]]></description>
          <pubDate>Wed, 21 Mar 2018 19:00:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241871#post2241871</guid>
        </item>
                <item>
          <title>Category Menu - parent/child question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241869#post2241869</link>
          <description><![CDATA[<p>I am using a category menu editor (<span>research_item_categories)</span> to tag articles in the another multi-record editor (<span>research_documents</span>). The category menu is limited to just 2 levels, parents and one level of children. The parents are not being used for tags, only for organizing the tags into different groupings.</p>
<p>I have been able to successfully setup a child page to show the proper articles. </p>
<p>But for a parent page, i want to show all articles tagged for any of it's children.</p>
<p>Here is my working code, <span style="color:#ff0000;"><strong>bold/red</strong></span> text is where I believe I need help.</p>
<p><code>  // load records from 'research_item_categories'<br />  list($research_item_categoriesRecords, $selectedResearch_item_categories) = getCategories(array(<br />    'tableName'            =&gt; 'research_item_categories', //<br />    'categoryFormat'       =&gt; 'onelevel',  // showall, onelevel, twolevel, breadcrumb<br />    'defaultCategory'      =&gt; '',    // Enter 'first', a category number, or leave blank '' for none<br />    <br />    // advanced options (you can safely ignore these)<br />    'rootCategoryNum'      =&gt; '',      // Only categories _below_ this one will be shown (defaults to blank or 0 for all)<br />    'ulAttributes'         =&gt; '',      // add html attributes to &lt;ul&gt; tags, eg: 'class="menuUL"' would output &lt;ul class="menuUL"&gt;<br />    'selectedCategoryNum'  =&gt; '',      // this record number is returned as the "selected category", defaults to getLastNumberInUrl()<br />    'ulAttributesCallback' =&gt; '',      // ADVANCED: custom function to return ul attributes, eg: 'myUlAttr' and function myUlAttr($category) { return "id='ul_uniqueId_{$category['num']}'"; }<br />    'liAttributesCallback' =&gt; '',      // ADVANCED: custom function to return li attributes, eg: 'myLiAttr' and function myLiAttr($category) { return "id='li_uniqueId_{$category['num']}'"; }<br />    'loadCreatedBy'        =&gt; false,   // loads createdBy.* fields for user who created category record (false is faster)<br />    'loadUploads'          =&gt; true,    // loads upload fields, eg: $category['photos'] gets defined with array of uploads (false is faster)<br />    'ignoreHidden'         =&gt; false,   // false = hide records with 'hidden' flag set, true = ignore status of hidden flag when loading records<br />    'debugSql'             =&gt; false,   // display the MySQL query being used to load records (for debugging)<br />  ));<br /><br /><br />    if($selectedResearch_item_categories['depth'] &gt; 0) {<br />        list($research_documentsRecords, $research_documentsMetaData) = getRecords(array(<br />            'tableName'   =&gt; 'research_documents',<br />            'loadUploads' =&gt; true,<br />            'allowSearch' =&gt; false,<br />            'where' =&gt; "category = ".$selectedResearch_item_categories['num'],<br />        ));<br />    } else {<br />        list($research_documentsRecords, $research_documentsMetaData) = getRecords(array(<br />            'tableName'   =&gt; 'research_documents',<br />            'loadUploads' =&gt; true,<br />            'allowSearch' =&gt; false,<br />            <span style="color:#ff0000;"><strong>// THIS IS WHERE I NEED THE HELP</strong></span><br /><span style="color:#ff0000;"><strong>            // 'where' =&gt; "category = ".$selectedResearch_item_categories['num'],</strong></span><br />        ));<br />    };<br /></code></p>
]]></description>
          <pubDate>Wed, 21 Mar 2018 11:12:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241869#post2241869</guid>
        </item>
                <item>
          <title>Force a field to lower case</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241868#post2241868</link>
          <description><![CDATA[<p>Good luck. It took me a few sites to get the hang of it, but I really love it now. </p>]]></description>
          <pubDate>Wed, 21 Mar 2018 08:04:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241868#post2241868</guid>
        </item>
                <item>
          <title>Force a field to lower case</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241865#post2241865</link>
          <description><![CDATA[<p>Is there not a way for you to transition to the permalinks plugin for this? It seems like it would address these issues quite well, and provide it's additional benefits? How extensive of a data set are you talking about?</p>]]></description>
          <pubDate>Wed, 21 Mar 2018 05:57:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241865#post2241865</guid>
        </item>
                <item>
          <title>Force a field to lower case</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241863#post2241863</link>
          <description><![CDATA[<p>I believe they want this to happen in the CMS as the info is being entered, or after its saved. </p>]]></description>
          <pubDate>Tue, 20 Mar 2018 18:36:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241863#post2241863</guid>
        </item>
                <item>
          <title>CMSB v3.12 Released - Pillbox Field - December 5th, 2017</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241860#post2241860</link>
          <description><![CDATA[<p>Any reason you're not promoting the 3.13 release that's available?</p>]]></description>
          <pubDate>Tue, 20 Mar 2018 14:09:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241860#post2241860</guid>
        </item>
                <item>
          <title>Category menu help - separated presentation of level 1 and level 2 (solved)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241859#post2241859</link>
          <description><![CDATA[<p>I am attempting to use the Category Menu editor type, but I want to present level one items (depth = 0) in one area of my page, and the level 2 items (depth = 1) of the currently active branch in another area of the page. I'm not sure how to separate these things with the code that comes from the generator, nor do i understand it well enough to figure out on my own.</p>
<p>Basic structure looks like this:</p>
<p>Category 1<br />- Subcategory 1A<br />- Subcategory 1B<br />- Subcategory 1C</p>
<p>Category 2<br />- Subcategory 2A<br />- Subcategory 2B<br />- Subcategory 2C</p>
<p>Category 3<br />- Subcategory 3A<br />- Subcategory 3B<br />- Subcategory 3C</p>
<p>But I want to present this on my page like this...</p>
<p><strong>Category 1</strong> / Category 2 / Category 3</p>
<p>And in another area of the page...</p>
<p>Subcategory 1A / Subcategory 1B / Subcategory 1C</p>]]></description>
          <pubDate>Tue, 20 Mar 2018 14:08:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241859#post2241859</guid>
        </item>
              </channel>
    </rss>
  