Difference between revisions of "JReviews GeoMaps Add-on"

From JReviews Documentation
Jump to: navigation, search
(Using multiple Google Maps API keys when using domain aliases)
Line 1: Line 1:
== Documentation ==
+
__NOTOC__
 +
 
 +
== Documentation Download ==
 
*[http://docs.reviewsforjoomla.com/downloads/geomaps/GeoMaps_Addon_Documentation.pdf Geomaps Addon Documentation]
 
*[http://docs.reviewsforjoomla.com/downloads/geomaps/GeoMaps_Addon_Documentation.pdf Geomaps Addon Documentation]
  
  
 
== Sales FAQ ==
 
== Sales FAQ ==
 
+
*[[How do I purchase add-ons and upgrade packages if I already purchased JReviews|How do I purchase GeoMaps Add-on if I already purchased JReviews]]
=== How do I purchase GeoMaps Add-on if I already purchased JReviews ===
+
*[[I can't find the downloads for GeoMaps, PaidListings or Everywhere add-ons|How do I install the Add-on? There's no download for it in the client area]]
 
+
*[[Just purchased an add-on but it says it’s not active]]
Read this article:
+
*[[How can I test GeoMaps before purchasing]]
*[[How do I purchase add-ons and upgrade packages if I already purchased JReviews]]
+
 
+
 
+
=== How do I install the Add-on? There's no download for it in the client area ===
+
The Add-on is installed directly from the JReviews administration. Please read the installation instructions in the manual:
+
 
+
*[http://docs.reviewsforjoomla.com/downloads/geomaps/GeoMaps_Addon_Documentation.pdf Geomaps Addon Documentation]
+
 
+
 
+
=== I purchased the addon, but it still says "addon not active for this license"  ===
+
Go to the JReviews admin license screen. Clear the local key text area and re-submit the license number. This will fetch a new local key that includes the addon information.
+
 
+
 
+
=== How can I test GeoMaps before purchasing? ===
+
 
+
GeoMaps addon can be seen and tested there on the demo site: <span style="color: blue">http://demo.reviewsforjoomla.com</span>
+
 
+
The Add-on is used in the New York City Guide:
+
*<span style="color: blue">http://demo.reviewsforjoomla.com/new-york-city-guide</span>
+
 
+
 
+
  
 
== Video Tutorials ==
 
== Video Tutorials ==
 
=== Building a City Guide Website with JReviews ===
 
 
 
*[http://docs.reviewsforjoomla.com/VideoTutorials/3.Website/2.CityGuide/CityGuide.html Building a City Guide Website with JReviews] (21:25 min.) - Learn how to create a Website for Restaurants, Hotels and other listing types for the City Guide
 
*[http://docs.reviewsforjoomla.com/VideoTutorials/3.Website/2.CityGuide/CityGuide.html Building a City Guide Website with JReviews] (21:25 min.) - Learn how to create a Website for Restaurants, Hotels and other listing types for the City Guide
 
=== Using the GeoMaps Add-on in a City Guide Website ===
 
 
*[http://docs.reviewsforjoomla.com/VideoTutorials/4.GeoMaps/1.GeomapsAddon/1.GeomapsAddon.html Using the GeoMaps Add-on in a City Guide Website] (11:51 min.) - This video continues on the "Building a City Guide Website with JReviews" video - you will learn how to install the Addon, configure it and how to geocode addresses.  
 
*[http://docs.reviewsforjoomla.com/VideoTutorials/4.GeoMaps/1.GeomapsAddon/1.GeomapsAddon.html Using the GeoMaps Add-on in a City Guide Website] (11:51 min.) - This video continues on the "Building a City Guide Website with JReviews" video - you will learn how to install the Addon, configure it and how to geocode addresses.  
 
  
  
 
== Tips & Tricks ==
 
== Tips & Tricks ==
 +
*[[How can I show the Map inside a tab]]
 +
*[[How to hide the map from certain categories]]
  
=== Displaying the Map inside a tab ===
 
*[[How can I show the Map inside a tab]]
 
  
=== Hiding map from certain sections or categories ===
 
You've successfully added GeoMaps to your site, but you also have certain categories, like news and blogs and others that don't require showing maps. Read the [[How to hide the map from certain categories]] to solve this problem.
 
  
 
=== Using multiple Google Maps API keys when using domain aliases ===
 
=== Using multiple Google Maps API keys when using domain aliases ===

Revision as of 11:06, 17 June 2011


Documentation Download


Sales FAQ

Video Tutorials


Tips & Tricks


Using multiple Google Maps API keys when using domain aliases

The add-on has a setting for only one API key. If you have alias domains pointed to your main site you will need one key per domain. The following hack will allow you to do that.

/components/com_jreviews/jreviews/controllers/my_controller.php

function beforeFilter() {
 
   # Init Access
   if(isset($this->Access)){
      $this->Access->init($this->Config);
   }
 
   # Load a different google maps key for every domain alias
   switch($_SERVER['HTTP_HOST']) {
      case 'www.domain-alias.com':
         $this->Config->{'geomaps.google_key'} = 'Google Maps API Key for the domain alias';
      break;
   }

Troubleshooting

Marker assignment via a custom field not working

The add-on allows you to use the images assigned to custom field options as markers. This is particularly useful if you've used a custom field for categorization. If the marker is not appearing on your maps you need to check a couple of things:

1. The field needs to be a single select or radio field because it's no possible to show more than one marker per listing.

2. The marker image needs to be placed in the add-on's icon folder. This means you will need to copy the image from the theme's theme_images folder to the icon folder where the add-on can find it.