Frequently Asked Questions
- How do I install the plugin?
- How do I install a plugin upgrade?
- How can my hotspot open a lightbox/fancybox slideshow?
- Can I replace an image I uploaded without losing the hotspots I created for it?
- Can I create irregular (meaning non-rectangular), polygon-shaped hotspots?
- Does it work with multi-site configurations?
- Does it work with the Genesis framework?
- How can I make the hover box stay fixed instead of following the mouse?
- Can I put a Hotspotter image into a sidebar widget (or some other non-standard place)?
- You haven’t answered my question!
-
How do I install the plugin?
The plugin may be easily installed in one of two ways:
- Automatic Installation
Submit the plugin zip file on the Plugins → Add New page. View full instructions. - Manual Installation
Upload the unzipped plugin folder into your server’swp-content/pluginsdirectory, ensuring all created sub-directories are writable by your server. View full instructions.
- Automatic Installation
-
How do I install a plugin upgrade?
If you attempt to upgrade using the Automatic Installation method described above, you’ll very likely see an error like “Destination folder already exists.” This is because WordPress currently will not automatically overwrite existing plugin files, even if you really mean to do so.
Instead of using that method to install the newer version of the plugin, you’ll have to use the Manual Installation method described above, wherein you FTP the new plugin contents into your existing
wp-content/pluginsfolder. (Installing the newer version of the plugin will not destroy any images you have previously uploaded.) -
How can my hotspot open a lightbox/fancybox slideshow?
In the properties of your hotspot specify the URL of the first slideshow image and in the attributes specify
rel="lightbox"where “lightbox” is a value you define for that particular slideshow.If you have additional images you’d like included in a given slideshow, simply add an
<a>tag to your post with the corresponding image URL and the samerelattribute. That will instruct your lightbox/fancybox that those images are to be coupled with the primary image which is linked to by the hotspot. -
Can I replace an image I uploaded without losing the hotspots I created for it?
There are plans to add support for uploading a replacement image, but until that is available, you can replace an existing image by uploading it via FTP into your
wp-content/plugins/image-hot-spotter/imagesfolder. Just ensure the new file name is the same and that it is not smaller in width/height than your hotspots require (or all sorts of unexpected things might happen). -
Can I create irregular (meaning non-rectangular), polygon-shaped hotspots?
Yes, kind of. Due to the special features offered by Image Hotspotter, using custom shapes via a standard HTML image map is not possible because web browsers simply don’t support the functionality. In short, only rectangular shapes are available. However, as a workaround what you can do is create multiple, overlapping rectangular hotspots over the irregular area and assign the same attributes to each one. As long as you don’t enable a visible border on the hotspots, to the end-user it will seem to be one large, irregularly shaped hotspot.
-
Does it work with multi-site configurations?
Yes, Image Hotspotter has been tested with standard multi-site installations and it has proven to function as expected.
-
Does it work with the Genesis framework?
Yes, Image Hotspotter has been reported by clients as having no issues working with Genesis.
-
How can I make the hover box stay fixed instead of following the mouse?
The standard functionality of the hover box is to move with your mouse while it’s over a hotspot. If you are using a custom layout where you’d like the hover box to sit in a fixed position, you can use the block of JavaScript below by just adding it to the footer of the page with the hotspots. (Find an example of this in action via our Powered By page.) This custom code will position the hover box at the center of the hotspot. If you’re savvy with JavaScript you can modify the code to work on just a specific image or to change the position of the hover boxes if necessary.
<script> (function($){ $(document).ready(function(){ $(".imagehotspotter_caption_box").each(function(){ var $that = $(this), $spot = $("#"+this.id.replace("caption_box", "spot")), os = $spot.offset(), w = parseFloat($spot.width()), h = parseFloat($spot.height()); $spot.mousemove(function(){ $spot.data('hovering', false); $that.css({top:os.top + (h / 2) ,left:os.left + (w / 2)}); }); }); }); })(jQuery); </script> -
You haven’t answered my question!
Sorry! Please feel free to contact us with your question and we’ll be happy to assist you.