<?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%3Ajghoward</link>
        <description></description>
        <pubDate>Wed, 29 Apr 2026 08:22:00 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ajghoward&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>SlideshowPro for list instead of detail</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199651#post2199651</link>
          <description><![CDATA[<i>EDIT: I have resolved this problem, but leaving the post up since it might help others. It might be helpful to append the tutorial, also.<br /><br />The problem was that for links to work, I had to change the slideshow html to:</i><br /><code>&lt;param name=&quot;allownetworking&quot; value=&quot;all&quot; /&gt;</code><br /><br /><blockquote>Following the tutorial for SlideShow Pro in the documentation, I have been able to successfully create an xml slideshow of uploads for a particular record.<br /><br />What the tutorial didn't cover however,is how to create a slideshow displaying uploads from all records.<br /><br />I have used the code generator to hack together a best guess, and I'm close. The images are loading, but the link is not.  Can you help me correct this code?<br /><br /><code>&lt;?php header('Content-type: application/xml; charset=utf-8'); ?&gt;&lt;?php echo '&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;'; ?&gt;<br />&lt;?php<br />  require_once &quot;/home/content/12/4805312/html/listingsmate/lib/viewer_functions.php&quot;;<br /><br />  list($listingsRecords, $listingsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'listings',<br />  ));<br /><br />?&gt;<br />&lt;gallery&gt;<br />&lt;album title=&quot;Featured Properties&quot; lgpath=&quot;/cmsAdmin/uploads/&quot; tnpath=&quot;/cmsAdmin/uploads/thumb/&quot;&gt;<br />&lt;?php foreach ($listingsRecords as $record): ?&gt;<br />&lt;?php foreach ($record['featuredphoto'] as $upload): ?&gt;<br />&lt;?php if ($upload['isImage']): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['filename'] ?&gt;&quot; title=&quot;&lt;?php echo $upload['info1'] ?&gt;&quot; link=&quot;&lt;?php echo $record['_link'] ?&gt;&quot; target=&quot;_self&quot; /&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach ?&gt;<br />    &lt;?php endforeach; ?&gt;<br />&lt;/album&gt;<br />&lt;/gallery&gt;</code></blockquote><br />]]></description>
          <pubDate>Wed, 07 Oct 2009 15:16:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199651#post2199651</guid>
        </item>
                <item>
          <title>Re: [chris] Exclude record(s) from viewer results?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199648#post2199648</link>
          <description><![CDATA[The code snippet you mentioned looks useful, but how do I implement it in my page?<br /><br />I'm using the code generator, so I have this at the top of my page:<br /><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  require_once &quot;/home/content/12/4805312/html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($listingsRecords, $listingsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'listings',<br />    'allowSearch' =&gt; '0',<br />  ));</code><br /><br />I'm using Google Maps and I want to show only one marker for each address. Some adresses have several unit types, so I just want to show one.<br /><br />The code I'm using shows all of them:<br /><code>&lt;?php foreach ($listingsRecords as $record): ?&gt; <br /> <br />      var point = new GLatLng(&lt;?php echo $record['latitude'] ?&gt;,&lt;?php echo $record['longitude'] ?&gt;); <br />      var marker = createMarker(point,'&lt;?php echo htmlspecialchars($record['street_address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($record['city'], ENT_QUOTES) ?&gt; &lt;br /&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot; target=&quot;_blank&quot;&gt;View Property Details&lt;/a&gt;')<br />      map.addOverlay(marker); <br />       <br />&lt;?php endforeach; ?&gt; <br /> <br />}</code><br /><br />Can you tell me how to use the code you suggested?  This will be helpful to me, as there are other situations on the site (slideshows) where I will need to know how to exclude listings.<br />]]></description>
          <pubDate>Tue, 06 Oct 2009 16:28:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199648#post2199648</guid>
        </item>
                <item>
          <title>Exclude record(s) from viewer results?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199044#post2199044</link>
          <description><![CDATA[I'm working on a site that lists property rentals, and my client has units at different price points at the same street address.  Since I'm populating Google Maps, slideshows, and overall site navigation with list data, there are times when I don't want to show duplicate addresses, nor list individual units.<br /><br />I'm thinking I will maintain separate records for each unit type, but only display the street address containing those units and link to different types in the main detail page.<br /><br />However, I do want the user to be able to search the entire list for rental price range.  Is there a way to exclude some records in the foreach loop in only some viewers?<br /><br />Also, are there any issues to be aware of when I'm using multiple viewers on the same page?  My maps, slideshows, navigation should be on the same page as search.  I don't quite understand what the &quot;searchable&quot; option means when generating code, and why it should be disabled sometimes.  I could not find it in the docs.<br /><br />Thanks,<br />John<br />]]></description>
          <pubDate>Mon, 31 Aug 2009 13:14:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199044#post2199044</guid>
        </item>
                <item>
          <title>Re: [Jake] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198978#post2198978</link>
          <description><![CDATA[I'm so glad this tutorial is here.  Before I get started, can you tell me if the  instructions are the same if I want to show a map for just one record on a details viewer page?<br /><br />UPDATE:<br />Awaiting your answer, but in the meantime I've made some progress.<br /><br />Instead of the list code, I generated the header for the detail page.<br /><br />Then, to center my map on the same point for which my record needs a marker, I used this code:<br /><br />&lt;?php foreach ($listingsRecords as $record): ?&gt; <br /> <br />      <br />        map.setCenter(new GLatLng(&lt;?php echo $record['latitude'] ?&gt;,&lt;?php echo $record['longitude'] ?&gt;), 13);<br />        var point = new GLatLng(&lt;?php echo $record['latitude'] ?&gt;,&lt;?php echo $record['longitude'] ?&gt;); <br />      var marker = createMarker(point,'&lt;?php echo htmlspecialchars($record['street_address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($record['city'], ENT_QUOTES) ?&gt;') <br />      map.addOverlay(marker); <br />       <br />&lt;?php endforeach; ?&gt; <br /> <br />} <br /><br />Okay, so my map is working when I load record number from end of url i.e. map.php?address-field-1<br />Can you tell me how to call the iframe from listingsDetail.php in a way that dynamically loads the correct map.<br /><br />Will this approach work? Is there a better way?<br />Why do I need the iframe?  Can't I just load the map on the same listingsDetail.php?address-field-1  page?<br />]]></description>
          <pubDate>Fri, 28 Aug 2009 14:30:58 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198978#post2198978</guid>
        </item>
              </channel>
    </rss>
  