Hotspots by Waindigo [Deleted]

Thanks for the quick update waindigo
As i am running 1.1.3 version of Xenforo , i got this banner displayed at the top of the page.
The banner did not show on the previous version .

Screenshot_1.webp
 
Last edited:
For Xen 1.1.x users, remove :

Code:
<xen:if is="@enableResponsive">
@media (max-width:700px)
{
    .Responsive .HotspotsList .markerType
    {
        display: none;
    }

    .Responsive .HotspotsList .markerText
    {
        display: none;
    }
  
    .Responsive .HotspotsList .details
    {
        display: none;
    }
}
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .HotspotsList .viewOnMap
    {
        display: none;
    }
  
    .Responsive .HotspotsList .submittedBy
    {
        display: none;
    }
}
</xen:if>
 
Last edited:
Got it.
had to remove :

Code:
<xen:if is="@enableResponsive">
@media (max-width:700px)
{
    .Responsive .HotspotsList .markerType
    {
        display: none;
    }

    .Responsive .HotspotsList .markerText
    {
        display: none;
    }
 
    .Responsive .HotspotsList .details
    {
        display: none;
    }
}
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .HotspotsList .viewOnMap
    {
        display: none;
    }
 
    .Responsive .HotspotsList .submittedBy
    {
        display: none;
    }
}
</xen:if>
Sorry. I was under the impression that that code was XenForo 1.1 friendly.

Edit: found the answer here:
http://xenforo.com/community/thread...-debug-mode-disabled-1-1-5.53278/#post-569435
 
Last edited:
I would like to see this great addon extended to be a member map with the following options:

A member's location would appear on the map based on the location entered in their member profile page.
upload_2013-7-3_21-16-27.webp

Clicking on the member name on the map would take them to their profile page.

If the member has not added their location in their profile, a "Add Me" button would appear. If their location is in their profile, the button would be show as "Remove Me" button.

There would be a button on the map to see where everyone you are following is located (provided they have entered their location)
upload_2013-7-3_21-16-14.webp

The "Create new Hotspot" button would be used for other stuff like events, places of interest, etc.

When creating a new hotpsot, the latitude and longitude would be replace by a "location" field and fields like "Updated Date" would be admin defined.
 
Last edited:
During the installation gives error.
500 internal server error
Just installed a test forum 1.2.0 Beta 4
 
Forum does not work
can not go to admin cp
You should add the following to the config.php file if you get an error like this again:
PHP:
$config['enableListeners'] = false;

This will allow you to enter the Admin Control Panel and find out what is causing the problem.
 
Code:
$config['enableListeners'] = false;
With this forum work
Remove does not work
I need error messages, otherwise I can't do anything. Is there nothing in the server log?

Try adding:
Code:
$config['debug'] = true;
and see if you get any error messages.
 
I need error messages, otherwise I can't do anything. Is there nothing in the server log?

Try adding:
Code:
$config['debug'] = true;
and see if you get any error messages.
PHP:
Template Errors: PAGE_CONTAINER
array_key_exists() expects parameter 2 to be array, null given in /home2/***/public_html/***/library/XenForo/Template/Abstract.php(265) : eval()'d code, line 1825:
1824:            ';
1825: if ((strpos($controllerName, ('Waindigo')) === 0 || array_key_exists($controllerName, $xenOptions['waindigo_loadClassHints'])) && !$waindigoCopyrightShown)
1826: {
 
Top Bottom