<?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%3AJenna</link>
        <description></description>
        <pubDate>Thu, 23 Apr 2026 08:06:09 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AJenna&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Filtering using data-filter</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245593#post2245593</link>
          <description><![CDATA[<p>Hi MercerDesign,</p>
<p>If you're using Isotope (<a href="https://isotope.metafizzy.co" rel="nofollow">https://isotope.metafizzy.co</a>) for this as well, you'll likely need to write some custom JS for this to tell Isotope to use the &lt;select&gt; options as filters and trigger it on 'change'. See this jsFiddle: <a href="https://jsfiddle.net/desandro/9pSyj/" rel="nofollow">https://jsfiddle.net/desandro/9pSyj/</a></p>
<p>Then you'd use the same code I provided before for the list options, but with a select and options instead.</p>
<pre class="language-php"><code>&lt;select id="work-flters"&gt;
  &lt;option data-filter="*" class="filter-active" value="*"&gt;All&lt;/li&gt;
  &lt;?php foreach (getListOptions('yourTableForWorks', 'category') as $value =&gt; $label): ?&gt;
    &lt;option data-filter=".&lt;?php echo htmlencode($value); ?&gt;" value=".&lt;?php echo htmlencode($value); ?&gt;"&gt;&lt;?php echo htmlencode($label); ?&gt;&lt;/option&gt;
  &lt;?php endforeach; ?&gt;
&lt;/select&gt;</code></pre>
<p>You will need to customize the code above using your table name and you may not need the "data-filter" attributes because you'd be writing Javascript (check out that JS Fiddle) to tell the browser that you're filtering on the change of the select "#work-filters" and use the value as the isotope filter value.</p>
<p>I think the link I found with a simple Google search will help in this case as I don't believe it's in Isotope's base functionality to use a select versus another HTML element.</p>
<p>Please let me know if this helps at all.</p>]]></description>
          <pubDate>Fri, 16 Jul 2021 13:53:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245593#post2245593</guid>
        </item>
                <item>
          <title>Filtering using data-filter</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245502#post2245502</link>
          <description><![CDATA[<p>Hi MercerDesign,</p>
<p>Thank you for your post. I've taken a look at the filtering code you have posted and the demo website that you linked. My first suggestion would be to make the new field in the multi-record section be switched to have a type of "list" where you could add your own options and labels. The option value would be the class name that you would want to be able to filter on later, and the label value would be what would display in the list of brands.</p>
<p>Example (note the pipe "|" delimiter between the option and label):</p>
<p>rolex|Rolex<br />patek|Patek Philippe<br />...</p>
<p>Then, your code could use a built-in CMS Builder function called "getListOptions", demonstrated below in a code sample. You would swap out "yourTableForBrands" with your section's table name and the "brandFieldName" with the field that has the list options saved for it:</p>
<pre class="language-php"><code>&lt;ul id="portfolio-flters"&gt;
  &lt;li data-filter="*" class="filter-active"&gt;All&lt;/li&gt;
  &lt;?php /* use getListOptions on the table fieldname to get all options available*/ ?&gt;
  &lt;?php foreach (getListOptions('yourTableForBrands', 'brandFieldName') as $value =&gt; $label): ?&gt;
    &lt;li data-filter=".&lt;?php echo htmlencode($value); ?&gt;"&gt;&lt;?php echo htmlencode($label); ?&gt;&lt;/li&gt;
  &lt;?php endforeach; ?&gt;
&lt;/ul&gt;

...

&lt;div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200"&gt;
  &lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;
  &lt;?php foreach ($galleryRecords as $record): ?&gt;
    &lt;div class="col-lg-4 col-md-6 portfolio-item &lt;?php echo htmlencode($record['brandFieldName']); // Same field name used to get the list options above ?&gt;"&gt;

    ...
    Code you've already got working
    ...

    &lt;/div&gt;

  &lt;?php endforeach ?&gt;
&lt;/div&gt;</code></pre>
<p>Please let me know if that helps you at all!</p>]]></description>
          <pubDate>Wed, 28 Apr 2021 11:51:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245502#post2245502</guid>
        </item>
                <item>
          <title>Convert Quotes to Curly Smart Quotes</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245440#post2245440</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>You should be able to do this with a simple plugin. You would need to utilize the viewer action "viewer_output_rows" seen below in the first line. </p>
<pre class="language-php"><code>addAction('viewer_output_rows', 'pluginName_convertToSmartQuotes', null, 1);
function pluginName_convertToSmartQuotes($rows, $listDetails, $schema) {
  $fieldsToConvert = array('content', 'title', 'field_1', 'field_2'); // List your fields that you want to convert in this array
  //Check against $schema if the column exists
  $columnsExist = function_to_check_if_keys_exist($fieldsToConvert, $schema);
  if (!$columnsExist ) { return $rows; } // Just return rows if nothing exists
  foreach (array_keys($rows) as $index) {
    $row = &amp;$rows[$index];
    foreach ($columnsExist as $field) {
      if ( isset($row[$field]) &amp;&amp; $row[$field] != '' )  { 
        $row[$field] = preg_replace(array('/\b"/','/"/',"/'/"), array('”','“',"’"), $row[$field]); 
      }
    }
    
    unset($row);
  }
  return $rows;
}
</code></pre>
<p>I did use some pseudo code to indicate what functionality you'd be looking to create [ <span style="text-decoration:underline;">function_to_check_if_keys_exist()</span> ]  so you can get the idea of what would need to be done. This pseudo function would need to be written to return an empty array if no columns/keys match or the columns that match.</p>
<p>If you're looking for us to write a quick plugin to help you accomplish this, send us an email at support@interactivetools.com and we would be happy to help you further and it shouldn't take much time at all. </p>
<p>Let me know if that helps or if you have further questions!</p>]]></description>
          <pubDate>Thu, 04 Mar 2021 07:30:13 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245440#post2245440</guid>
        </item>
                <item>
          <title>Re: Re: [Jason] showing record count</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245430#post2245430</link>
          <description><![CDATA[<p>Hi JH,</p>
<p>In this case you could use the `mysql_count` function ( mysql_count($tableName, $whereEtc) ). Used in the below format:</p>
<pre class="language-php"><code>$jeffCount = mysql_count('project_management', "`current_owner` = 'jeff'");</code></pre>
<p>This would return a count for every project associated with Jeff's name. If you needed to filter by other parameters (like project_status = 'active' for example) you could add that to the second part, setting it up like a where clause concatenating with AND/OR etc.</p>
<p>Please let me know if this helps you at all for your situation.</p>]]></description>
          <pubDate>Mon, 01 Mar 2021 10:04:05 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245430#post2245430</guid>
        </item>
                <item>
          <title>developers log empty but getting email</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245427#post2245427</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>We<span>'d recommend that you upgrade to the latest version of CMS Builder and see if that resolves the issue, as the issue might be specific to this version of CMSB (3.51) combined with the version of PHP you are using.</span></p>
<p><span>If that doesn't resolve the issue, you can send an email to </span>support@interactivetools.com<span> and we can investigate and debug the issue further.</span></p>]]></description>
          <pubDate>Mon, 01 Mar 2021 09:13:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245427#post2245427</guid>
        </item>
                <item>
          <title>Lists, default values set to &apos;ON&apos; state rather than &apos;OFF&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245426#post2245426</link>
          <description><![CDATA[<p>Hi Davidpanter,</p>
<p>We can't think of a way to do this without the use of a plugin. You <span>could take a look at using the `record_preedit` hook to add the required options to the request on page load with a plugin, or alternately contact us at support@interactivetools.com and we can provide you with more information or help by building the plugin.</span></p>
<p><span>Feel free to send us an email and we'd be happy to help and provide you with more information on this option.</span></p>]]></description>
          <pubDate>Mon, 01 Mar 2021 09:04:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245426#post2245426</guid>
        </item>
                <item>
          <title>Show Records Individually</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245425#post2245425</link>
          <description><![CDATA[<p>Hi Phil,</p>
<p>Did mizrahi's reply help you achieve your desired result? Please let us know.</p>
<p>Jenna</p>]]></description>
          <pubDate>Mon, 01 Mar 2021 08:57:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245425#post2245425</guid>
        </item>
                <item>
          <title>Newsletter plugin - CC and BCC emails</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245424#post2245424</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Just wanted to follow up here and say that, after talking to my colleague, there is nothing wrong with using the `sendMessage` function. The `nlb_sendMessage` was created specifically for newsletters but the sendMessage function has many other features you can use. There aren't any disadvantages to using it, just advantages really. Check the file lib/mail_functions.php around line 43 for all the features of the sendMessage function.</p>
<p>Please let us know if you have any further questions.</p>
]]></description>
          <pubDate>Mon, 01 Mar 2021 08:51:56 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245424#post2245424</guid>
        </item>
                <item>
          <title>Re: Re: [orazio] Get options from database limit??</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245407#post2245407</link>
          <description><![CDATA[<p>Hi rez,</p>
<p>If you were to use the "Get options from MySQL query (advanced)" as seen in the screenshot attached you would be able to set your own limit or leave out the limit entirely.</p>
<p>You could use a query like :</p>
<pre class="language-markup"><code>SELECT yourFieldName
  FROM `&lt;?php echo $TABLE_PREFIX ?&gt;your_tableName`
ORDER BY yourFieldName ASC</code></pre>
<p>Feel free to omit the ORDER BY clause, but it would be handy in this case because you have &gt;1000 records to display. It would default to orderBy the numerical index (num) column of your brewers table.</p>
<p>Let me know if that helps you with your question or if I should dig in deeper and find something else to help you out.</p>]]></description>
          <pubDate>Wed, 10 Feb 2021 08:46:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245407#post2245407</guid>
        </item>
                <item>
          <title>suppressing foreach loop erros on detail pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245406#post2245406</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Just wanted to add something to this thread. Built into CMSB is a function called <strong>redirectBrowserToUrl</strong> (defined in lib/http_functions.php) which essentially provides the functionality you mentioned here, without having to write the header('Location: <a href="http://fullurl.com" rel="nofollow">http://fullurl.com</a>') and the die().</p>
<p>It can be used like so:</p>
<pre class="language-php"><code>if (!$your_sectionRecord) { redirectBrowserToUrl('your-new-page.php'); }</code></pre>
<p>Note that since this still uses the header('Location...') functionality of php it still needs to be be put before any other kind of information, as you mentioned in your post (copied below).</p>
<blockquote>
<p><span>Just remember that since you're setting an HTTP-header, you must not have sent any kind of output before (not even a </span><span>blank space at the end of an included file) or you'll throw a "Warning: Cannot modify header information - headers </span><span>already sent" error. Test your page after the modification to make sure that it works as planned, and proceed </span><span>accordingly. </span></p>
</blockquote>
<p><span>Please let me know if this is useful for you.</span></p>]]></description>
          <pubDate>Wed, 10 Feb 2021 08:23:55 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245406#post2245406</guid>
        </item>
                <item>
          <title>MySQL version check</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245405#post2245405</link>
          <description><![CDATA[<p>Hi ht1080z</p>
<p>Thank you for your post. You can safely ignore this warning as we are going to make an update in the next version to fix this issue. See post <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2245179#post2245179" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2245179#post2245179</a> for more details.</p>
<p>And if you need a patch to remove the warning in the meantime, Dave has made a suggestion on this post <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2245190#post2245190" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2245190#post2245190</a> </p>
<p>Again, we will update CMSB in the next release to fix this warning that shows for some MariaDB users when the MySQL and MariaDB versions don't match up.</p>
<p>Please let us know if you need anything else.</p>]]></description>
          <pubDate>Wed, 10 Feb 2021 08:06:21 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245405#post2245405</guid>
        </item>
                <item>
          <title>Searching records list by updatedDate</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245396#post2245396</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Would you be able to submit a second level support request for this? <a href="https://www.interactivetools.com/support/request/" rel="nofollow">https://www.interactivetools.com/support/request/</a></p>
<p>We would like to take a look and see what's going on. In version 3.54, I am able to have additional lines of search terms after "_all_" without having to change the field type from "none" for "updatedDate" so I'd like to take a look and see what's happening with your install of CMS Builder.</p>
<p>Ideally, we would not want to need to change the field type for default fields. </p>
<p>I'll keep an eye out for a support ticket from you, and as always, we're happy to help.</p>]]></description>
          <pubDate>Wed, 03 Feb 2021 07:54:25 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245396#post2245396</guid>
        </item>
                <item>
          <title>Convert Quotes to Curly Smart Quotes</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245393#post2245393</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>Are you still looking for us to chime in on this one? I notice it's from December 2020.</p>
<p>Please let us know if you're still looking for assistance.</p>]]></description>
          <pubDate>Mon, 01 Feb 2021 08:46:36 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245393#post2245393</guid>
        </item>
                <item>
          <title>Newsletter plugin - CC and BCC emails</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245391#post2245391</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Are you still searching for an answer on this?</p>
<p>Please let us know.</p>]]></description>
          <pubDate>Mon, 01 Feb 2021 08:35:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245391#post2245391</guid>
        </item>
                <item>
          <title>Lists, default values set to &apos;ON&apos; state rather than &apos;OFF&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245390#post2245390</link>
          <description><![CDATA[<p>Hi Davidpanter,</p>
<p>Do you have a lot of options to select from? In the "list" functionality, it's expecting default values to be separated by a tab character. I was able to go into my text editor (or I'm sure word processors would work too), and separate my options with a tab (\t) and have them automatically select all in newly created items in my section. See screenshots below.</p>
<p>Note that the options will be converted into an array to check against, character for character of the option value... so the default value options, only separated by a "tab", must match the values in your options list.</p>
<p>Please let me know if that helps.</p>]]></description>
          <pubDate>Mon, 01 Feb 2021 08:31:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245390#post2245390</guid>
        </item>
                <item>
          <title>suppressing foreach loop erros on detail pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245377#post2245377</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Just so I'm clear on this, the error is because there is no $musicians_lisingsRecord at all because there's no parameter passed at the end of the url?</p>
<p>My guess would be that you need to check if $musicians_lisingsRecord is set first then.</p>
<pre class="language-php"><code>&lt;?php if (isset($musicians_lisingsRecord) &amp;&amp; $musicians_lisingsRecord['list_page_image']) : // Because $musicians_lisingsRecord will not be set if no url param passed?&gt;
  &lt;?php foreach ($musicians_lisingsRecord['list_page_image'] as $index =&gt; $upload): ?&gt;
    &lt;img src="&lt;?php echo htmlencode($upload['thumbUrlPath3']) ?&gt;" width="&lt;?php echo $upload['thumbWidth3'] ?&gt;" height="&lt;?php echo $upload['thumbHeight3'] ?&gt;" alt="" /&gt;
  &lt;?php endforeach ?&gt;
&lt;?php endif ?&gt;</code></pre>
<p>Or you could try near the top of your file, where you first getRecords for $musicians_lisingsRecord, the following:</p>
<pre class="language-php"><code>if (!$musicians_lisingsRecord) { dieWith404("Record not found!"); }</code></pre>
<p>Please let me know if this helps at all.</p>]]></description>
          <pubDate>Thu, 28 Jan 2021 13:56:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245377#post2245377</guid>
        </item>
                <item>
          <title>If Statement to count total number of personnel assigned a category and assign html layout based on total</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245374#post2245374</link>
          <description><![CDATA[<p>Hi Zicky,</p>
<p>I'm glad I was able to help with this! Looks great!</p>]]></description>
          <pubDate>Thu, 28 Jan 2021 11:11:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245374#post2245374</guid>
        </item>
                <item>
          <title>If Statement to count total number of personnel assigned a category and assign html layout based on total</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245372#post2245372</link>
          <description><![CDATA[<p>Hi Zicky,</p>
<p>I think I may have a solution for you. In /lib/common.php we have the following function:</p>
<pre class="language-php"><code>// array_groupBy:
//   eg. $recordsByNum = array_groupBy($records, 'num');
//   eg. $recordsByCategory = array_groupBy($records, 'category', true);
//       foreach ($recordsByCategory as $category =&gt; $categoryRecords) { ;;; }
// PHP Alternate: $recordsByNum = array_combine(array_column($menuRecords, 'num'), $menuRecords);
function array_groupBy($recordList, $indexField, $resultsAsArray = false) {</code></pre>
<p>It allows you to group the returned results into an associative array with the column of your choice. In your case you may use it like:</p>
<pre class="language-php"><code>$groupedStaffRecords = array_groupBy($staffRecords, 'categories', true);</code></pre>
<p>Putting that line beneath your $staffRecords list near the top of the file. You would then loop through the $groupedStaffRecords using a foreach loop:</p>
<pre class="language-php"><code>&lt;?php foreach ($groupedStaffRecords as $category =&gt; $records) :?&gt; 
  &lt;?php if($category == '4'): ?&gt;
     &lt;?php $total_staff = count($records); // Set a total variable to use for the columns?&gt;
     &lt;?php foreach ($records as $key =&gt; $record): // this is the loop of the individual records in this category ?&gt;
       &lt;!--below it checks if it's the last result and is even (% 2) modulus operator checks if it is divisible by the number --&gt;
       &lt;?php if ($key == $total_staff &amp;&amp; $total_staff % 2 !== 0) : ?&gt;
         &lt;div class="small-12 medium-12 large-12 cell"&gt;
       &lt;?php else: ?&gt;
         &lt;div class="small-6 medium-6 large-6 cell"&gt;
       &lt;?php endif ?&gt;
           &lt;!-- show record content --&gt;
         &lt;/div&gt;
     &lt;?php endforeach ?&gt; 
  &lt;?php endif ?&gt;
&lt;?php endforeach ?&gt;</code></pre>
<p>You'll probably have to modify some things to ensure they work for your specific use case, but this should help to get you started in the right direction.</p>
<p>Let me know if this helps or if I need to clarify anything.</p>]]></description>
          <pubDate>Thu, 28 Jan 2021 07:02:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245372#post2245372</guid>
        </item>
                <item>
          <title>Re: Geocoder isn&apos;t auto-generate latitude and longitude coordinates</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245369#post2245369</link>
          <description><![CDATA[<p>Hi Zicky,</p>
<p>I downloaded the version of the Geocoder plugin (v1.05) and it doesn't include the API Key for use in the maps api call.</p>
<pre class="language-php"><code>// Changed Line 123 from $url = "<a href="https://maps.googleapis.com/maps/api/geocode/json?sensor=false&amp;address=" rel="nofollow">https://maps.googleapis.com/maps/api/geocode/json?sensor=false&amp;address=</a>" . urlencode($address)
// To below:
$url = "<a href="https://maps.googleapis.com/maps/api/geocode/json?address=" rel="nofollow">https://maps.googleapis.com/maps/api/geocode/json?address=</a>" .urlencode($address);
// Include the GEOCODER API KEY, added this
if (@$GLOBALS['GEOCODER_GOOGLE_API_KEY']!= '') {
  $url .= "&amp;key=".$GLOBALS['GEOCODER_GOOGLE_API_KEY'];
}
//This stays so it gets added if it exists
if (@$GLOBALS['GEOCODER_REGION']) {
  $url .= "&amp;region=" . urlencode($GLOBALS['GEOCODER_REGION']);
}</code></pre>
<p>Normally, I wouldn't suggest updating a plugin below the line that says not to update below... but this is an outdated version of the plugin. In later releases, it got updated to properly use the GEOCODER_GOOGLE_API_KEY.</p>
<p>That being said, I tested locally and finally got it to work (after it getting the denied status many times). I also utilized other fields like the ones we tried earlier, using the slash (/) between your field names and the Google-understood fields.</p>
<p>Please give this a shot.</p>
<p><em>Note that when you update to a more recent version of Geocoder in the future, it should be self-resolved.</em></p>
]]></description>
          <pubDate>Wed, 27 Jan 2021 16:05:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245369#post2245369</guid>
        </item>
                <item>
          <title>Re: Geocoder isn&apos;t auto-generate latitude and longitude coordinates</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245366#post2245366</link>
          <description><![CDATA[<p>Hi Zicky,</p>
<p>Please give this a try: </p>
<pre class="language-markup"><code>$GLOBALS['GEOCODER_ADDRESS_FIELD_COMBOS'] = array( // values should be ", " separated. alternates should be "/" separated.
  'address, city, province/state, postcode/zipcode/zip',
  'city, province/state, postcode/zipcode/zip',
  'province/state, postcode/zipcode/zip',
  'address, city, province/state, country',
  'address, city, province/state',
  'postcode/zipcode/zip/address',
  'property_street_address/address, property_city/city, property_state/state, property_zip/zipcode'
);</code></pre>
<p>I'm wondering if since you're declaring a new set of field combinations that the plugin doesn't understand what you're trying to do and therefore Google cannot figure it out either. By adding the alternates accepted by Google, it may wind up working properly.</p>
<p>Please let me know if this is helpful and if not, I will continue looking.</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 09:29:13 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245366#post2245366</guid>
        </item>
                <item>
          <title>Re: Geocoder isn&apos;t auto-generate latitude and longitude coordinates</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245363#post2245363</link>
          <description><![CDATA[<p>Hi Zicky,</p>
<p>I'd be happy to try to get to the bottom of this with you. I just need to confirm which version of the Geocoder plugin you're using and on which version of cmsbuilder? In this post you say v1.05 and v3.06 respectively but on <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2244363#post2244363" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2244363#post2244363</a> you say latest and v3.53.</p>
<p>I want to ensure I am using the same version as you are when I try to see what my settings are versus yours.</p>
<p>We are working on getting appropriate documentation for setting up the Google API keys, as it is far too confusing for everyone (myself included sometimes).</p>
<p>Let me know which versions you're using and I'll do my best to help you out.</p>
<p>Thanks!</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 08:24:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245363#post2245363</guid>
        </item>
                <item>
          <title> Restrict access to a sub folder on a CMSB controlled site to logged in users only</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245362#post2245362</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Just wanted to do a quick check in regarding this thread: are you still searching for a solution to restrict user access to sub-folders?</p>
<p>Please let us know if we can be of assistance.</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 08:08:59 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245362#post2245362</guid>
        </item>
                <item>
          <title>Upgrading version 2.07 to latest version</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245361#post2245361</link>
          <description><![CDATA[<p>Hi btammen,</p>
<p>Was Codee's reply sufficient for your update question?</p>
<p>This is an old post so I want to check with you first, but if you still need assistance we'd be happy to help.</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 08:03:00 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245361#post2245361</guid>
        </item>
                <item>
          <title>display associated record field for each record on list page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245358#post2245358</link>
          <description><![CDATA[<p>Hi all,</p>
<p>Just taking a look at this old post and noticed that there could still be unanswered questions. Do you still require assistance?</p>
<p>We'd be happy to help, please let us know.</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 07:54:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245358#post2245358</guid>
        </item>
                <item>
          <title>Image Type SVG</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245357#post2245357</link>
          <description><![CDATA[<p>Hi Tim,</p>
<p>I just wanted to check in on this post: was Hans able to help you get to an acceptable solution for this, or are you still looking for guidance?</p>
<p>Please let us know.</p>]]></description>
          <pubDate>Wed, 27 Jan 2021 07:47:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245357#post2245357</guid>
        </item>
              </channel>
    </rss>
  