<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Tag: google maps - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/google-maps</link>
		<description>Support Forum - Tag: google maps - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 21:50:13 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/google-maps" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111155</link>
			<pubDate>Tue, 14 May 2013 16:32:00 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">111155@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi geogecko,&#60;/p&#62;
&#60;p&#62;You could use a custom page template for the page and add it in that way. See: &#60;a href=&#34;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Page_Templates#Custom_Page_Template&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>geogecko on "Fusion tables map"</title>
			<link>http://www.kriesi.at/support/topic/fusion-tables-map#post-111078</link>
			<pubDate>Tue, 14 May 2013 10:05:54 +0000</pubDate>
			<dc:creator>geogecko</dc:creator>
			<guid isPermaLink="false">111078@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi folks,&#60;br /&#62;
I want to add a fusion table map to my site, I can't manage it. Can you suggest how I might amend the code to post it?&#60;br /&#62;
Thanks&#60;br /&#62;
Bernard (htt://www.geogecko.com)&#60;/p&#62;
&#60;p&#62;&#38;lt;!DOCTYPE html&#38;gt;&#60;br /&#62;
&#38;lt;html&#38;gt;&#60;br /&#62;
  &#38;lt;head&#38;gt;&#60;br /&#62;
  &#38;lt;style&#38;gt;&#60;br /&#62;
    #map-canvas { width:1000px; height:800px; }&#60;br /&#62;
  &#38;lt;/style&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#60;br /&#62;
    src=&#34;http://maps.google.com/maps/api/js?sensor=false&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
    var map;&#60;br /&#62;
    var layerl0;&#60;br /&#62;
    var layerl1;&#60;br /&#62;
    var layerl2;&#60;br /&#62;
    function initialize() {&#60;br /&#62;
      map = new google.maps.Map(document.getElementById('map-canvas'), {&#60;br /&#62;
        center: new google.maps.LatLng(-13.297911901638637, 27.9502080625),&#60;br /&#62;
        zoom: 7&#60;br /&#62;
      });&#60;br /&#62;
      var style = [&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'all',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { saturation: 99 }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.highway',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.arterial',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'road.local',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.neighborhood',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'administrative.land_parcel',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'poi',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        },&#60;br /&#62;
        {&#60;br /&#62;
          featureType: 'transit',&#60;br /&#62;
          elementType: 'all',&#60;br /&#62;
          stylers: [&#60;br /&#62;
            { visibility: 'off' }&#60;br /&#62;
          ]&#60;br /&#62;
        }&#60;br /&#62;
      ];&#60;br /&#62;
      var styledMapType = new google.maps.StyledMapType(style, {&#60;br /&#62;
        map: map,&#60;br /&#62;
        name: 'Styled Map'&#60;br /&#62;
      });&#60;br /&#62;
      map.mapTypes.set('map-style', styledMapType);&#60;br /&#62;
      map.setMapTypeId('map-style');&#60;br /&#62;
      layerl0 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '186gYAPNi43m_pTD29ZbTB_JaunrAKikJh0jRdYE'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl1 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2&#38;gt;&#38;gt;0'&#34;,&#60;br /&#62;
          from: '1exlL0hvwX6z1Vc245ZGsIwGcTbDiu5pCWSxi7xM'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
      layerl2 = new google.maps.FusionTablesLayer({&#60;br /&#62;
        query: {&#60;br /&#62;
          select: &#34;'col2'&#34;,&#60;br /&#62;
          from: '12hb056xSAX01zQadeuxYg-ZciwHjOVFg9jf6UMU'&#60;br /&#62;
        },&#60;br /&#62;
        map: map,&#60;br /&#62;
        styleId: 2,&#60;br /&#62;
        templateId: 2&#60;br /&#62;
      });&#60;br /&#62;
    }&#60;br /&#62;
    google.maps.event.addDomListener(window, 'load', initialize);&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#60;br /&#62;
  &#38;lt;/head&#38;gt;&#60;br /&#62;
  &#38;lt;body&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;map-canvas&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/body&#38;gt;&#60;br /&#62;
&#38;lt;/html&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-108830</link>
			<pubDate>Sat, 04 May 2013 09:10:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108830@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Afaik this is a bug with the google maps iframes and tabs (see &#60;a href=&#34;http://www.kriesi.at/support/topic/google-map-issue-with-shortcode-tabs&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/google-map-issue-with-shortcode-tabs&#60;/a&#62; ). I guess the only solution is to use the map in the first tab (the tab content is not hidden by default) or to use it outside of tabs. I'll mark this thread for Kriesi.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>maratino on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-108681</link>
			<pubDate>Fri, 03 May 2013 13:07:01 +0000</pubDate>
			<dc:creator>maratino</dc:creator>
			<guid isPermaLink="false">108681@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;you can see it here: &#60;a href=&#34;http://procasa-online.de/verkauf/wohnen-im-schlossle-in-metzingen-neuhausen/#tab-id-4&#34; rel=&#34;nofollow&#34;&#62;http://procasa-online.de/verkauf/wohnen-im-schlossle-in-metzingen-neuhausen/#tab-id-4&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>maratino on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-108680</link>
			<pubDate>Fri, 03 May 2013 13:06:05 +0000</pubDate>
			<dc:creator>maratino</dc:creator>
			<guid isPermaLink="false">108680@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am using an iframe with the correct values. The marker is centered in my backend-view. it just &#34;moves&#34; to 0,0 in my tabbed map.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-107874</link>
			<pubDate>Tue, 30 Apr 2013 01:04:19 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">107874@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It should work. Try to go to google map again. Enter your address. Right click the marker of your location then click &#34;What's Here&#34;. The coordinates (latitude and longtitude) will automatically pop up. Fill up the google map widget with the coordinates. Zoom lvl 1 is world view.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>maratino on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-107837</link>
			<pubDate>Mon, 29 Apr 2013 20:17:52 +0000</pubDate>
			<dc:creator>maratino</dc:creator>
			<guid isPermaLink="false">107837@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have a google map in a Tab Content element. instead of centering the map my marker gets displayed at 0,0.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://www.evernote.com/shard/s16/sh/0d3a26ba-ca03-41f5-b1ea-00b402ba9e23/e0eff011a9ffb2d09f94f7b2bb1b1f15&#34; rel=&#34;nofollow&#34;&#62;https://www.evernote.com/shard/s16/sh/0d3a26ba-ca03-41f5-b1ea-00b402ba9e23/e0eff011a9ffb2d09f94f7b2bb1b1f15&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>runekjensen on "google map to much zoom"</title>
			<link>http://www.kriesi.at/support/topic/google-map-to-much-zoom#post-107821</link>
			<pubDate>Mon, 29 Apr 2013 17:39:11 +0000</pubDate>
			<dc:creator>runekjensen</dc:creator>
			<guid isPermaLink="false">107821@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I have created a widget with good maps in it, to place on our contact site. However the zoom level doesn´t change...it´s always to close, no matter if i set it at 5 or 15. It seems like it zooms in instantly.&#60;br /&#62;
You can see it here : &#60;a href=&#34;http://greenforcecompany.dk/kontakt-info/&#34; rel=&#34;nofollow&#34;&#62;http://greenforcecompany.dk/kontakt-info/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Google Maps"</title>
			<link>http://www.kriesi.at/support/topic/google-maps-1#post-107660</link>
			<pubDate>Sun, 28 Apr 2013 11:58:24 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">107660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://vimeo.com/channels/aviathemes/64978020&#34; rel=&#34;nofollow&#34;&#62;https://vimeo.com/channels/aviathemes/64978020&#60;/a&#62; &#38;lt;--- how to add the google map widget&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://vimeo.com/channels/aviathemes/64978019&#34; rel=&#34;nofollow&#34;&#62;https://vimeo.com/channels/aviathemes/64978019&#60;/a&#62; &#38;lt;--- how to build a contact page&#60;br /&#62;
------------------&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/google-maps-widget-in-custom-widget-area#post-106864&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/google-maps-widget-in-custom-widget-area#post-106864&#60;/a&#62; &#38;lt;--- fix to apply to code if you plan to use two show directions with 2 addresses in 1 map.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Google Maps"</title>
			<link>http://www.kriesi.at/support/topic/google-maps-1#post-107301</link>
			<pubDate>Thu, 25 Apr 2013 22:31:39 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">107301@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Go to Appearance &#38;gt; Widget &#38;gt; Create a new widget area name it for example Google Map then insert the Enfold Google Map Widget. &#60;/p&#62;
&#60;p&#62;Edit the Contact page, choose Advance Layout Editor. Click the Content Elements tab then insert a Sidebar. Select the newly create widget area we named &#34;Google Map&#34;. Update or save the page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Snert on "Google Maps"</title>
			<link>http://www.kriesi.at/support/topic/google-maps-1#post-107208</link>
			<pubDate>Thu, 25 Apr 2013 12:27:03 +0000</pubDate>
			<dc:creator>Snert</dc:creator>
			<guid isPermaLink="false">107208@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, how can I google maps (as here: &#60;a href=&#34;http://www.kriesi.at/themes/enfold/pages/contact/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/enfold/pages/contact/&#60;/a&#62;) insert? Thank you for reply.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-85180</link>
			<pubDate>Sat, 24 Nov 2012 00:11:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">85180@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Maj,&#60;/p&#62;
&#60;p&#62;Glad that you've fixed it. And thanks for the tip. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MajX on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-85121</link>
			<pubDate>Fri, 23 Nov 2012 11:44:16 +0000</pubDate>
			<dc:creator>MajX</dc:creator>
			<guid isPermaLink="false">85121@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, Ismael&#60;br /&#62;
fixed the problem by using % rather than fixed pixel widths. I have posted this in case any other beginners have the same issue.&#60;br /&#62;
thanks again.&#60;br /&#62;
Maj
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MajX on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-85120</link>
			<pubDate>Fri, 23 Nov 2012 10:53:57 +0000</pubDate>
			<dc:creator>MajX</dc:creator>
			<guid isPermaLink="false">85120@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, Ismael&#60;br /&#62;
sorry to re-open this post but I have encountered a problem I did not see. Angular is a responsive site, works brilliantly on any device, but the map is not accounting for this. I added the map to the page and it works fine, however it does not resize when used on the ipad, iphone, and other tablets. For instance the right hand sidebar ends up over the top of the map when the client views the page on his ipad (portrait). &#60;/p&#62;
&#60;p&#62;Is there some code I can use to make the map resize? Maybe by adding some custom CSS?&#60;br /&#62;
many thanks&#60;br /&#62;
Maj
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84946</link>
			<pubDate>Thu, 22 Nov 2012 05:11:38 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84946@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Maj,&#60;/p&#62;
&#60;p&#62;Glad that Peter helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MajX on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84855</link>
			<pubDate>Wed, 21 Nov 2012 09:47:53 +0000</pubDate>
			<dc:creator>MajX</dc:creator>
			<guid isPermaLink="false">84855@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, got it thanks, and it seems to work perfectly well. I have used it as you said, as a shortcode in the main contact page content.&#60;br /&#62;
(I will send you a link once it goes live if your interested, I am working in maintenance mode till we get it ready.)&#60;br /&#62;
Thanks for all your help.&#60;br /&#62;
Maj
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84829</link>
			<pubDate>Wed, 21 Nov 2012 06:35:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">84829@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Sure - I won't close it :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MajX on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84728</link>
			<pubDate>Tue, 20 Nov 2012 15:02:49 +0000</pubDate>
			<dc:creator>MajX</dc:creator>
			<guid isPermaLink="false">84728@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, thanks for the information. Keep the post open if you don't mind, I'll let you know how I get on later today / tomorrow. As I am new to this I may need a bit of help? Many thanks Maj
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84713</link>
			<pubDate>Tue, 20 Nov 2012 13:30:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">84713@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Angular does not import google maps out of the box but you can use plugins like: &#60;a href=&#34;http://wordpress.org/extend/plugins/comprehensive-google-map-plugin/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/comprehensive-google-map-plugin/&#60;/a&#62; - it allows you to insert google maps into your content (by using a shortcode).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MajX on "Contact GOOGLE MAP"</title>
			<link>http://www.kriesi.at/support/topic/contact-google-map#post-84693</link>
			<pubDate>Tue, 20 Nov 2012 12:01:35 +0000</pubDate>
			<dc:creator>MajX</dc:creator>
			<guid isPermaLink="false">84693@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi&#60;br /&#62;
I am new to WordPress and templates so please bare with me. I am setting up a small Portfolio site for my client using the Angular theme. They are very keen very keen that we include a large google map of their location on the Contact page. I am currently using the standard contact page as supplied in the template (with right sidebar).&#60;br /&#62;
How do I go about adding Google Map into the top of the page (not the sidebar).&#60;br /&#62;
Is there a widget I need to get? Do I need some special code?&#60;/p&#62;
&#60;p&#62;Would be great if you could help me out please. I see you use the Google Maps in the Coherence theme.&#60;br /&#62;
Many thanks&#60;br /&#62;
Maj
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78625</link>
			<pubDate>Fri, 05 Oct 2012 08:01:34 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78625@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Great :) &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>saynw on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78536</link>
			<pubDate>Thu, 04 Oct 2012 13:40:17 +0000</pubDate>
			<dc:creator>saynw</dc:creator>
			<guid isPermaLink="false">78536@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Peter you are a genius! That solved it!&#60;/p&#62;
&#60;p&#62;Thanks mate!&#60;/p&#62;
&#60;p&#62;I mark the topic as resolved. &#60;/p&#62;
&#60;p&#62;Nicolas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78503</link>
			<pubDate>Thu, 04 Oct 2012 06:19:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78503@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Try to add following code to the bottom of style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.js_active #main .textwidget img {
    visibility: visible !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>saynw on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78452</link>
			<pubDate>Wed, 03 Oct 2012 22:04:49 +0000</pubDate>
			<dc:creator>saynw</dc:creator>
			<guid isPermaLink="false">78452@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Devin,&#60;/p&#62;
&#60;p&#62;In this page of my site you can see the widget (but not showing TripAdvisor logo)&#60;br /&#62;
&#60;a href=&#34;http://chacrasdecoria.travel/hoteles/entre-cielos-hotel/&#34; rel=&#34;nofollow&#34;&#62;http://chacrasdecoria.travel/hoteles/entre-cielos-hotel/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And in this other site, you can see exactly the same code working correctly.&#60;br /&#62;
&#60;a href=&#34;http://laresdechacras.com/restaurant/&#34; rel=&#34;nofollow&#34;&#62;http://laresdechacras.com/restaurant/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for your help!&#60;/p&#62;
&#60;p&#62;Nicolas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78428</link>
			<pubDate>Wed, 03 Oct 2012 17:01:51 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">78428@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey saynw,&#60;/p&#62;
&#60;p&#62;It could be a clash between the plugin and the theme or the script that is getting imported in. Do you have a page that has the widget showing?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>saynw on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78224</link>
			<pubDate>Tue, 02 Oct 2012 13:51:07 +0000</pubDate>
			<dc:creator>saynw</dc:creator>
			<guid isPermaLink="false">78224@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter, unfortunately I think there is something wrong.&#60;/p&#62;
&#60;p&#62;When using the Google Maps v3 Shortcode multiple Markers plugin as you can see on the second map on this page &#60;a href=&#34;http://chacrasdecoria.travel/mapa/&#34; rel=&#34;nofollow&#34;&#62;http://chacrasdecoria.travel/mapa/&#60;/a&#62; For that map I used the same code I have in other site&#60;br /&#62;
&#60;code&#62;[MultipleMarkerMap id=&#38;quot;lares&#38;quot; z=&#38;quot;15&#38;quot; lat=&#38;quot;-32.989244&#38;quot; lon=&#38;quot;-68.884652&#38;quot; marker=&#38;quot;-32.989244,-68.884652,Lares de Chacras Hotel Boutique,http://google-maps-icons.googlecode.com/files/hotel.png&#124;-32.986402,-68.88226,Plaza de Chacras de Coria,http://google-maps-icons.googlecode.com/files/citysquare.png&#38;quot; w=&#38;quot;580&#38;quot; h=&#38;quot;320&#38;quot;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;However I solved the map issue creating a map on google and embedded it on my site as you can see in the first map of that page.&#60;/p&#62;
&#60;p&#62;I'm having another problem with TripAdvisor Widgets. I paste the code but the images are not displaying (TripAdvisor logo for example).&#60;br /&#62;
This is a TripAdvisor Code that should display reviews and TripAdvisor logo. The reviews looks fine but not the logo.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;TA_selfserveprop57&#38;quot; class=&#38;quot;TA_selfserveprop&#38;quot;&#38;gt;
&#38;lt;ul id=&#38;quot;mTMRXs&#38;quot; class=&#38;quot;TA_links T8PvisEBXe&#38;quot;&#38;gt;
&#38;lt;li id=&#38;quot;OeH1bsAELp&#38;quot; class=&#38;quot;EGTfpg&#38;quot;&#38;gt;231 opiniones sobre &#38;lt;a target=&#38;quot;_blank&#38;quot; href=&#38;quot;http://www.tripadvisor.es/Hotel_Review-g644399-d655858-Reviews-Lares_de_Chacras-Chacras_de_Coria_Mendoza_Province_of_Mendoza_Cuyo.html&#38;quot;&#38;gt;Lares de Chacras&#38;lt;/a&#38;gt; en Chacras de Coria&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;script src=&#38;quot;http://www.jscache.com/wejs?wtype=selfserveprop&#38;amp;uniq=57&#38;amp;locationId=655858&#38;amp;lang=es&#38;amp;rating=true&#38;amp;nreviews=3&#38;amp;writereviewlink=false&#38;amp;popIdx=false&#38;amp;iswide=false&#38;amp;border=false&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This two issues make me think there could be something wrong with my site.&#60;br /&#62;
Do you have any clue or idea about whats wrong?&#60;/p&#62;
&#60;p&#62;Thanks for your help mate!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-78190</link>
			<pubDate>Tue, 02 Oct 2012 06:12:34 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78190@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi!&#60;br /&#62;
The Google map works fine for me. I can drag the map by using the mouse cursor. Did you solve the issue?&#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>saynw on "Theme compatibility with Google Maps shortcode??"</title>
			<link>http://www.kriesi.at/support/topic/theme-compatibility-with-google-maps-shortcode#post-77992</link>
			<pubDate>Sun, 30 Sep 2012 14:25:48 +0000</pubDate>
			<dc:creator>saynw</dc:creator>
			<guid isPermaLink="false">77992@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is the newscast theme compatible with the Google Maps v3 Shortcode multiple Markers plugin?&#60;/p&#62;
&#60;p&#62;I just instaleed it, and use the same shortcode I have in other site, and when seing the page, I can see the border, and markers on the maps, but cannot navigate the map or see the streets.&#60;/p&#62;
&#60;p&#62;Has anyone has the same problem?&#60;br /&#62;
Which Google Maps plugin do you use? I need to add to a map several markers with a description and link to a page of my site.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;In this website de plugin is working. &#60;a href=&#34;http://www.laresdechacras.com/ubicacion&#34; rel=&#34;nofollow&#34;&#62;http://www.laresdechacras.com/ubicacion&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Contact Page"</title>
			<link>http://www.kriesi.at/support/topic/contact-page-9#post-75886</link>
			<pubDate>Fri, 14 Sep 2012 08:25:40 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">75886@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please log into the admin back-end, and click Pages &#38;gt; All Pages. From the list of pages, find the Contact page and click to Edit it. When the contact page opens up, below the main text area is a panel Slideshow options. Please look at the attached image (&#60;a href=&#34;http://i.imgur.com/WBFvA.png&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/WBFvA.png&#60;/a&#62;)  , and click the (Remove) link. Click Update button in the upper right side of page and the map should be gone.&#60;/p&#62;
&#60;p&#62;To change the spelling, please make a backup of contact-form.php, located in the /includes/ directory of the theme, and using notepad edit line 44. If you run into problems, delete the file you were editing and rename a backup of the original to contact-form.php&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zakmulla on "Contact Page"</title>
			<link>http://www.kriesi.at/support/topic/contact-page-9#post-75741</link>
			<pubDate>Thu, 13 Sep 2012 14:19:56 +0000</pubDate>
			<dc:creator>zakmulla</dc:creator>
			<guid isPermaLink="false">75741@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Note: I am a novice building my own website so will need a basic explanation and steps to follow please. &#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Zak
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
