Hotspots by Waindigo [Deleted]

Works brilliantly for us, thank you.

One thing though, how can we change the Navbar and all other public facing references from 'Hotspots' to 'Locations'?

GN7lVoa.png


I've only been able to change one phrase so far.

Cheers

Chris
 
Screenshot_2015-03-23-19-27-39.webp
Hopefully thats readable full size. i think this should be all the phrases i modified on mine. I dont use the nav menu entry so im not sure if this would cover that.
 
Got this server error after a user push the like button.

ErrorException: Fatal Error: Call to undefined method Waindigo_Hotspots_Model_Hotspot::getHotspotsByIds() - library/Waindigo/Hotspots/LikeHandler/Hotspot.php:31
Generiert durch: longhair, Vor 8 Minuten
Stapelverfolgung
#0 [internal function]: XenForo_Application::handleFatalError()
#1 {main}
Benötigter Status
array(3) {
["url"] => string(58) "http://www.domain.net/forums/index.php?account/likes"
["_GET"] => array(1) {
["account/likes"] => string(0) ""
}
["_POST"] => array(0) {
}
}
 
Just two things...

How to make all the headers styling the same...

fu33kMo.png
Find the template waindigo_hotspots.css
and add a style entry
Code:
.dataTable tr.dataRow th {
    color: #WhateverColorYourLinkColorIs
    text-decoration: none;
}
making the obvious replacement.



And how to remove the Thread URL option?

wYXRu4i.png


Thanks

Chris

edit the template waindigo_hotspot_edit_hotspots
comment out or remove
Code:
        <xen:if is="{$canEditThreadUrl}">
            <dl class="ctrlUnit">
                <dt>
                    <label for="ctrl_thread_url">{xen:phrase waindigo_hotspot_thread_url_hotspots}:</label>
                </dt>
                <dd>
                    <input type="text" name="thread_url" value="{$hotspot.thread_url}"
                        id="ctrl_thread_url"
                        class="textCtrl" maxlength=""
                    />
                </dd>
            </dl>
        </xen:if>

OR
set the permission Hotspots by Waindigo Permissions : Edit thread URL to Not Set for your base Registered Users (or whatever is the lowest group that can add hotspots)
 
Looks like @Jon W may have forgotten a template or something. I don't know my way through XF addons well enough to say for sure whats missing or how to replace it. Hopefully he pushes a patch soon that addresses it.
 
Thanks. I've also got a map category that is selected as "applicable maps = none" and it's still an option on the default map.

Check that you don't have another map selected still? I vaguely recall that picking none doesn't mean it'll ignore any other selections. I dont actually use the default map (which has led to a point of annoyance in that I haven't figured out how to get rid of the default map yet)
 
I just created a new category, and it's instantly selectable on the default map.

That's a real pain, because the I wanted to create custom categories for other maps without them showing on default map.
 
If i hit "Likes You've Received" in my account i got this error.

Fatal error: Call to undefined method Waindigo_Hotspots_Model_Hotspot::getHotspotsByIds() in /usr/www/users/pattay/forums/library/Waindigo/Hotspots/LikeHandler/Hotspot.php on line 31
 
I just created a new category, and it's instantly selectable on the default map.

That's a real pain, because the I wanted to create custom categories for other maps without them showing on default map.

I duplicated the problem, and then thought about it for a bit, and in a twisted way, it makes sense the way it works, but only in that - as far as I can see looking at my admin options - there is no other visible way to add a category to the default map other than by leaving the selection at none.

If you're already planning on doing multiple maps anyways, why not just not use the default? This is the way I'm doing it, which has the inherent problem of the default map being blank, so I removed the NavBar item, which leaves it still accessible via /maps/ (or /hotsposts/) but at least not visibly linked. It would be nice if you could set the default map as opposed to having it bounce to a blank map for crazy folk like me who don't use the default map (I wanted my map in my node tree and couldn't find a way to put the default there)
 
Having the default map is perfect for us, it's just 'there'. I suppose I could make a custom map and just make a tab for it. Problem is though, we've got nearly 300 locations in the default map in just 24 hours, how would these be transferred to another map?

We want to have some maps available to members of certain groups only, the markers are completely different, and irrelevant to the main map.

It's a bit of a problem for us.
 
Probably something along the lines of
Code:
UPDATE xf_hotspot
SET node_id = ###MapNodeID###
WHERE node_id=0

I wouldn't try that straight out on a live server though, at least not without grabbing a DB backup first. Not sure if there are other relationships or counters that need to be maintained.
 
Back
Top Bottom