<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: SSL and Mixed Content Issue: VC Google Map</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/feed/</link>
		<description></description>
		<pubDate>Fri, 28 Aug 2026 22:26:13 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28844</guid>
					<title><![CDATA[SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28844</link>
					<pubDate>Sun, 05 Jun 2016 21:09:01 +0000</pubDate>
					<dc:creator>viablethought</dc:creator>

					<description>
						<![CDATA[
						<p>Hello -</p>
<p>I have an SSL cert installed on my server as well as using Cloudflare for my website. I have installed the SSL Insecure Content Fixer plugin and it worked great for everything, with the exception of the map I have embedded on my Contact page.</p>
<p>It seems that the JS being dumped out onto the page from the VC Google Map shortcode is the issue for my &#8220;Mixed Content&#8221; error. It is this line that is causing the problem:</p>
<p><code>$content .= &#039;var image = &quot;&#039;. esc_url($markerimage) .&#039;&quot;;&#039;;</code></p>
<p>Which is on Line 173 of the boc_gmap.php file. On the front end though, it is placing the uploaded marker correctly, but it is also spitting out additional code below it:</p>
<pre><code>geocoder_map_148.geocode( { &#039;address&#039;: address}, function(results, status) {
					if (status == google.maps.GeocoderStatus.OK) {
						map_148.setCenter(results[0].geometry.location);
						var image = &quot;https://omniacreativestudio.com/wp-content/uploads/2016/03/omnia-map-marker.png&quot;;
							var marker = new google.maps.Marker({
								map: map_148,
								icon: image,
								position: map_148.getCenter()
							});
							
								var contentString = &#039;Omnia Creative Studio&lt;br /&gt;Call Today 856-322-2464&#039;;
								var infowindow = new google.maps.InfoWindow({
									content: contentString
								});

								google.maps.event.addListener(marker, &#039;click&#039;, function() {
								  infowindow.open(map_148,marker);
								});
								
					} else {
						alert(&quot;Geocode was not successful for the following reason: &quot; + status);
					}
				});
				var image = &quot;http://556&quot;;
					var marker = new google.maps.Marker({
					map: map_148,
					icon: image,
					position: map_148.getCenter()
				});</code></pre>
<p>You can see where the &#8220;var image&#8221; is spitting out &#8220;http://556&#8243; which is what is causing the issue with Mixed Content, and for some reason the plugin isn&#8217;t able to pick up on it and remove the &#8220;http:&#8221; part of the URI.</p>
<p>How can I rectify this?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28849</guid>
					<title><![CDATA[Reply To: SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28849</link>
					<pubDate>Mon, 06 Jun 2016 07:06:42 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there!</p>
<p>Which theme version are you using?<br />
Also are you speaking of the &#8220;Custom Google Map&#8221; element here?<br />
thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28862</guid>
					<title><![CDATA[Reply To: SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28862</link>
					<pubDate>Mon, 06 Jun 2016 14:41:16 +0000</pubDate>
					<dc:creator>viablethought</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28872</guid>
					<title><![CDATA[Reply To: SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28872</link>
					<pubDate>Tue, 07 Jun 2016 08:01:18 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again,</p>
<p>Indeed! Please edit your fortuna\includes\shortcodes\vc\boc_gmap.php</p>
<p>and replace this:<br />
<code>$content .= &#039;var image = &quot;&#039;. esc_url($markerimage) .&#039;&quot;;&#039;;</code></p>
<p>with this:</p>
<pre><code>$image_src = wp_get_attachment_image_src($markerimage, &#039;full&#039;);
$content .= &#039;var image = &quot;&#039;. esc_url($image_src[0]) .&#039;&quot;;&#039;;</code></pre>
<p>Let me know if that fixes it please!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28879</guid>
					<title><![CDATA[Reply To: SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28879</link>
					<pubDate>Tue, 07 Jun 2016 12:04:11 +0000</pubDate>
					<dc:creator>viablethought</dc:creator>

					<description>
						<![CDATA[
						<p>Hello -</p>
<p>That indeed fix it, the Mixed Content error is gone now. Thank you. </p>
<p>On a side note, it has been a little while since you guys have pushed out an update, you have something coming soon? Just curious. Thanks.</p>
<p>- V</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28882</guid>
					<title><![CDATA[Reply To: SSL and Mixed Content Issue: VC Google Map]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/ssl-and-mixed-content-issue-vc-google-map/#post-28882</link>
					<pubDate>Tue, 07 Jun 2016 12:43:58 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>On the Fortuna theme you mean?<br />
Prolly within the next 2-3 weeks or so&#8230;<br />
We are also working on a new theme, that will take awhile to finish though, thanks for your interest! <img src="https://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

