<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Home map controls stop working after exceeding 174 location posts</title>
		<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Home map controls stop working after exceeding 174 location posts</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 17:21:17 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts" rel="self" type="application/rss+xml" />

		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13778</link>
			<pubDate>Fri, 10 Aug 2012 01:02:07 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">13778@http://www.themolitor.com/forums/</guid>
			<description><p>hello i understand :) but if u show me some unrelevant posts, i need to manage the problem by my way. Like i said i readed all of those posts and this is not our problem. This topic is one big missunderstanding. Unfortunnely..</p>
<p>To Ogitive: sorry man i deleted whole site yesterday so i do not have all of the code modifications. Let the theme provider help you.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13760</link>
			<pubDate>Thu, 09 Aug 2012 15:59:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">13760@http://www.themolitor.com/forums/</guid>
			<description><p>Hey there,</p>
<p>Please keep in mind, we cannot troubleshoot sites that have made edits to the theme files. We can only troubleshoot code we wrote. </p>
<p>To make sure the issues aren't caused by the edits you've made, please revert back to the default setup of the theme to make sure it actually is a theme-related issue.</p>
<p>Hope you understand :-)</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>ogitive on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13697</link>
			<pubDate>Wed, 08 Aug 2012 22:06:05 +0000</pubDate>
			<dc:creator>ogitive</dc:creator>
			<guid isPermaLink="false">13697@http://www.themolitor.com/forums/</guid>
			<description><p>Thank you Elisiz, but code is not working again :(<br />
I put , buttons are working, but I lose all post infos and I lose map marker visability...
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13671</link>
			<pubDate>Wed, 08 Aug 2012 08:14:00 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">13671@http://www.themolitor.com/forums/</guid>
			<description><p>hello, i just checked his site and he got same problem like me. I´m ussing windows7 + latest firefox with firebug extension only. I stopped searching for sollution because i will remake my page to something different.</p>
<p>My latest sollution was to replace owerlays with infowindow. Here is the code.</p>
<p>        function add(jQuerythis, i, title, link, excerpt, lati, longi, img, pin){<br />
          jQuerythis.gmap3({<br />
            action : 'addMarker',<br />
            lat:lati,<br />
            lng:longi,<br />
            options: {icon: new google.maps.MarkerImage(pin)},<br />
            events:{<br />
       			mouseover: function(marker){<br />
                            var map = jQuery(this).gmap3('get');<br />
                            var test = '&#60;table border="0"&#62;&#60;tr&#62;&#60;td&#62;'+img+'&#60;/td&#62;&#60;td&#62;&#60;div id="markerTitle'+i+'" class="markerTitle"&#62;'+title+'&#60;/div&#62;&#60;/td&#62;&#60;/tr&#62;&#60;/table&#62;';<br />
                            infowindow = jQuery(this).gmap3({action:'get', name:'infowindow'});<br />
                                if (infowindow){<br />
                                infowindow.open(map, marker);<br />
                                infowindow.setContent(test);<br />
                                } else {<br />
                                jQuery(this).gmap3({action:'addinfowindow', anchor:marker, options:{content: title}});<br />
                                }<br />
          			jQuerythis.css({cursor:'pointer'});<br />
          			jQuery('#markerTitle'+i+'').fadeIn({ duration: 200, queue: false }).animate({bottom:"32px"},{duration:200,queue:false});<br />
          			jQuery('.markerInfo').removeClass('activeInfo').hide();<br />
          			jQuery('#markerInfo'+i+'').addClass('activeInfo').show();<br />
          			jQuery('.marker').removeClass('activeMarker');<br />
          			jQuery('#marker'+i+'').addClass('activeMarker');<br />
      			},<br />
       			mouseout: function(){<br />
          			var infowindow = jQuery(this).gmap3({action:'get', name:'infowindow'});<br />
                                if (infowindow){<br />
                                infowindow.close();<br />
                                }<br />
                                jQuerythis.css({cursor:'default'});<br />
          			jQuery('#markerTitle'+i+'').stop(true,true).fadeOut(200,function(){jQuery(this).css({bottom:"0"})});<br />
      			},<br />
      			click: function(marker){window.location = link}<br />
   			},<br />
            callback: function(marker){<br />
              var jQuerybutton = jQuery('&#60;div id="marker'+i+'" class="marker"&#62;&#60;div id="markerInfo'+i+'" class="markerInfo"&#62;<a href="'+link+'">'+img+'</a>&#60;h2&#62;<a href="'+link+'">'+title+'</a>&#60;/h2&#62;&#60;p&#62;'+excerpt+'&#60;/p&#62;<a href="'+link+'">Zobrazit detaily &#8594;</a>&#60;div class="markerTotal"&#62;'+i+' / &#60;span&#62;&#60;/span&#62;&#60;/div&#62;&#60;/div&#62;&#60;/div&#62;');<br />
              jQuerybutton.mouseover(function(){<br />
                  jQuerythis.gmap3({<br />
                    action:'panTo',<br />
                    args:[marker.position]<br />
                  });<br />
                  jQuery("#target").stop(true,true).fadeIn(1200).delay(500).fadeOut(1200);<br />
               });<br />
              jQuery('#markers').append(jQuerybutton);<br />
              var numbers = jQuery(".markerInfo").length;<br />
              jQuery(".markerTotal span").html(numbers);<br />
              if(i == 1){<br />
              	jQuery('.marker:first-child').addClass('activeMarker').mouseover();<br />
              }<br />
              /*<br />
              jQuerythis.gmap3({<br />
              	action:'addOverlay',<br />
              	content: '&#60;div id="markerTitle'+i+'" class="markerTitle"&#62;'+title+'&#60;/div&#62;',<br />
              	latLng: marker.getPosition()<br />
               });<br />
               */<br />
            }
</p></description>
		</item>
		<item>
			<title>ckelley on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13658</link>
			<pubDate>Wed, 08 Aug 2012 07:07:31 +0000</pubDate>
			<dc:creator>ckelley</dc:creator>
			<guid isPermaLink="false">13658@http://www.themolitor.com/forums/</guid>
			<description><p>@ogitive,</p>
<p>I just checked your site in FF version 9-current and it all works fine for me</p>
<p>what version and what OS are you using?</p>
<p>-Chris K
</p></description>
		</item>
		<item>
			<title>ogitive on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13643</link>
			<pubDate>Tue, 07 Aug 2012 22:41:01 +0000</pubDate>
			<dc:creator>ogitive</dc:creator>
			<guid isPermaLink="false">13643@http://www.themolitor.com/forums/</guid>
			<description><p>Hi ckelly, controllers are not working if you are using Firefox (any version). Dont know reason, but as I understand, Firefox have some security thing that is blocking script if it is over 174 posts... I have already there 300+ so it is same problem... Thank you for answer
</p></description>
		</item>
		<item>
			<title>ckelley on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13066</link>
			<pubDate>Mon, 23 Jul 2012 05:49:23 +0000</pubDate>
			<dc:creator>ckelley</dc:creator>
			<guid isPermaLink="false">13066@http://www.themolitor.com/forums/</guid>
			<description><p>@ogitive</p>
<p>the controllers are working fine for all of your posts, can you be more specific on what your issue is</p>
<p>-Chris K
</p></description>
		</item>
		<item>
			<title>ogitive on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-13019</link>
			<pubDate>Sun, 22 Jul 2012 05:56:28 +0000</pubDate>
			<dc:creator>ogitive</dc:creator>
			<guid isPermaLink="false">13019@http://www.themolitor.com/forums/</guid>
			<description><p>Hello Elisiz24, unfortunatly I have same problem like you, but your new code didn't fix template. Maybe you change something more? Please I need help urgently, hope that you have time to answer...</p>
<p>Website with problem is:<br />
<a href="http://www.ogitive.info/platforma" rel="nofollow">http://www.ogitive.info/platforma</a>
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9983</link>
			<pubDate>Sat, 12 May 2012 14:40:48 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9983@http://www.themolitor.com/forums/</guid>
			<description><p>hello again,<br />
i finnaly found a sollutin.<br />
Problem is with placement of previously noticed function. It is placed in callback part of request. This mean: that function is called every time when marker is placed to the map. When is alot of markers inserted, firefox will stop executing scripts to prevent infinite loops.<br />
Just place that function to the events section. Like:</p>
<p>            events:{<br />
       			mouseover: function(){<br />
          			jQuerythis.gmap3({<br />
                                action:'addOverlay',<br />
                                content: '&#60;div id="markerTitle'+i+'" class="markerTitle"&#62;'+title+'&#60;/div&#62;',<br />
                                latLng: [lati, longi]<br />
                                });<br />
                                jQuerythis.css({cursor:'pointer'});<br />
          			jQuery('#markerTitle'+i+'').fadeIn({ duration: 200, queue: false }).animate({bottom:"32px"},{duration:200,queue:false});<br />
          			jQuery('.markerInfo').removeClass('activeInfo').hide();<br />
          			jQuery('#markerInfo'+i+'').addClass('activeInfo').show();<br />
          			jQuery('.marker').removeClass('activeMarker');<br />
          			jQuery('#marker'+i+'').addClass('activeMarker');</p>
<p>      			},<br />
       			mouseout: function(){<br />
          			jQuerythis.css({cursor:'default'});<br />
          			jQuery('#markerTitle'+i+'').stop(true,true).fadeOut(200,function(){jQuerythis.css({bottom:"0"})});<br />
      			},<br />
      			click: function(){window.location = link}<br />
   			},
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9932</link>
			<pubDate>Fri, 11 May 2012 04:42:52 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9932@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks for reply, but that is not my problem. I readed those posts before and checked and corrected all mistakes in my import script. If i take a look on source code of my page ewerything looks ok. Map is centered on propper place.  </p>
<p>By the way, they inserting things dirrectly into database. This technique is a bit dangerous. Better method (which im ussing) is to use wordpress xmlrpc server. Its safe and wordpress functions will handle all correct data formating needs, upload images and assign them to a post, etc... </p>
<p>Now i got sollution. I will stop to use overlay which is ussing function getPosition() (there is a problem somewhere i think there is an loop wich run too much times and leads my firebug to crash) and replace it by info window which do not need to know his possition.</p>
<p>I know php but to debug javascript is out of my skills. I´m still learning.
</p></description>
		</item>
		<item>
			<title>Justin on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9920</link>
			<pubDate>Thu, 10 May 2012 19:24:26 +0000</pubDate>
			<dc:creator>Justin</dc:creator>
			<guid isPermaLink="false">9920@http://www.themolitor.com/forums/</guid>
			<description><p>See here <a href="http://www.themolitor.com/forums/topic/the-navigator-category-cannot-exceed-297-posts" rel="nofollow">http://www.themolitor.com/forums/topic/the-navigator-category-cannot-exceed-297-posts</a>
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9889</link>
			<pubDate>Thu, 10 May 2012 13:44:12 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9889@http://www.themolitor.com/forums/</guid>
			<description><p>Problem is in this tooltip drawing function. Why? I dont know.</p>
<p>               jQuerythis.gmap3({<br />
              	action:'addOverlay',<br />
              	content: '&#60;div id="markerTitle'+i+'" class="markerTitle"&#62;'+title+'&#60;/div&#62;',<br />
              	latLng: marker.getPosition()<br />
               });</p>
<p>Located in script.php about line 120.
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9884</link>
			<pubDate>Thu, 10 May 2012 10:22:03 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9884@http://www.themolitor.com/forums/</guid>
			<description><p>Hello, i found this javascript error ocuring on pages where limit is exceeded:<br />
"too much recursion" and it leading to gmap3.min.js.</p>
<p>So it means this problem should occur for all sites with more posts than 174 on homepage.<br />
Can´t still find sollution. Please help someone.
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9835</link>
			<pubDate>Wed, 09 May 2012 14:24:25 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9835@http://www.themolitor.com/forums/</guid>
			<description><p>News.. It seems that problem is show up only in firefox. Tested latest IE and Chrome without problem.
</p></description>
		</item>
		<item>
			<title>Elisiz24 on "Home map controls stop working after exceeding 174 location posts"</title>
			<link>http://www.themolitor.com/forums/topic/home-page-map-controls-stop-working-after-exceeding-173-location-posts#post-9833</link>
			<pubDate>Wed, 09 May 2012 12:59:16 +0000</pubDate>
			<dc:creator>Elisiz24</dc:creator>
			<guid isPermaLink="false">9833@http://www.themolitor.com/forums/</guid>
			<description><p>Hello,<br />
i noticed a veird bug. When my homepage or category contain more than 174 posts, the map controll buttons stop working. I checked if all posts have proper lat and lng values and they did. I can delete some random posts and below 175 posts is all ok. No matter what post i inserted. So i removed image inserting and custom fields inserting in (xmlrpc)import strcipt and still the same. In the next step i used generic post values not from my feed like 'Title '.$i++; and lorem ipsum text plus same lat and lng values. Problem still persist. Map is centered properly. I`m now stucked with no idea.. Please can anybody help?</p>
<p>Nice theme btw.<br />
My site is: <a href="http://www.madovolena.cz/" rel="nofollow">http://www.madovolena.cz/</a>
</p></description>
		</item>

	</channel>
</rss>
