-
AuthorPosts
-
March 4, 2015 at 9:19 am #405629
I found the following particular thread to see if it works:
https://kriesi.at/support/topic/tooltips-with-click/
Aparently, this dosn’t seem to help.
Basically, would like to replace the ‘hover’ effect on the Image Hotspots with a click effect in the same place. Any recommendations?
March 4, 2015 at 7:10 pm #405987Hey co4!
Elliott’s code should work. Did you clear browser cache after implementing the code? What’s happening after you implement it? Can you post a link to your website showing the hotspots?
Cheers!
AndyMarch 4, 2015 at 8:48 pm #406030Hi,
I believe in the current version of the theme, the line you were referring to was on 686, also 699 looked like something similar, also tried changing the event to click. It still activated on hover.
I also noticed that in the list of sources in chrome developer tools, enfold/config-templatebuilder/avia-template-builder/assets/js/avia-modal.js doesn’t show up, maybe it’s in another file as well?
Anyway, our URL is http://mercerfriendshipcircle.org/lifetown/ . The map is on the home page.
Another quick question that’s somewhat related. Do you have a recommended way to make the pins bigger? We tried making an image with bigger pins, and changed the width and height of the div, but they positioning moved down a bit. We can correct for this by either re-positioning the pins, or using a negative margin, but wanted to check with you guys first if there’s a cleaner way.
Thanks
- This reply was modified 9 years, 8 months ago by co4.
March 5, 2015 at 4:04 pm #406468Hey!
Please update Enfold to the latest version 3.0.8 – kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
YigitMarch 9, 2015 at 9:05 pm #408447Hello,
We upgraded to 3.0.8, then tried the modification suggested at https://kriesi.at/support/topic/tooltips-with-click/
It still does not seem to make a difference.
There was a line in /js/avia.js that we changed mouseenter to click, and it stopped the hover effect, but it did not work on click.
Please advise.
Thanks
March 10, 2015 at 5:28 am #408616March 10, 2015 at 6:15 am #408635In addition to the lines mentioned in the previous post above,
/js/avia.js
Line 1624
Change ‘mousenter’ to ‘click’This stopped the hover effect, but did not change it to work on click.
(This line was changed back to default afterwards)March 11, 2015 at 4:09 pm #409918Hi!
For the image hotspots your supposed to edit the avia-modal.js file on line 681.
It looks like your using custom images for the markers so to make them bigger you will need to use a bigger image.
When I viewed your link there was also numbers being displayed on top of the markers which you can get rid of with this CSS.
.av-hotspot-container .av-image-hotspot_inner { font-size: 1px !important; }
Regards,
ElliottMarch 11, 2015 at 9:26 pm #410115Hi,
As you can see (and as I mentioned in the initial post) in our own enfold/config-templatebuilder/avia-template-builder/assets/js/avia-modal.js, like 681 was changed to say ‘click’, but if you actually try out the page, it still shows up on hover (i.e., it’s not working). Are you able to please take a look? It appears that enfold/config-templatebuilder/avia-template-builder/assets/js/avia-modal.js isn’t even one of the js files being loaded. Can you help us get the open on click thing working? We’ve been going around in circles for a week on this.
The numbers are temporarily there intentionally so that the client can tell us what to put where.
March 12, 2015 at 9:09 pm #410730Hey!
Hmm, just tested again and it’s not working for some reason, sorry about that.
Try opening up /enfold/js/avia.js and change line 1710 from this.
event: 'mouseenter', //mousenter and leave or click and leave
To this.
event: 'click', //mousenter and leave or click and leave
And then line 1769 from this.
var target = this.options.event == "click" ? e.target : e.currentTarget,
To this.
var target = e.currentTarget,
Regards,
ElliottMarch 16, 2015 at 6:01 am #411882Thanks, that did the trick, except the line numbers we have in our version is 1624 and 1683.
-
AuthorPosts
- The topic ‘Image Hotspots Clickable rather than on Hover’ is closed to new replies.