This topic contains 1 reply, has 2 voices, and was last updated by Sofia Moss Sofia Moss 7 years, 9 months ago.

Region selector always open

  • Rated one or more Super Store Finder productsUser Level

    Hello I’ve purchased your plugin from themeforest.

    Is it possible to have always open the region box in the header map?

    Here is the screen:

    Region box

    Sofia Moss
    StaffSuper ContributorUser Level

    Hi there,

    Thank you for your inquiry, we’re unable to view your screenshot. As to show Region filter by default, you can edit js/mega-superstorefinder.net

    Search for the following code:

    $els.storeLocatorInfoBox.self.find('.infobox__closer').on('click', function(e) {
    
        e.preventDefault();
    
        map.infobox.self.close();
    
    });
    

    And change the code (add a new line of code) as below:

    $els.storeLocatorInfoBox.self.find('.infobox__closer').on('click', function(e) {
    
       e.preventDefault();
    
       map.infobox.self.close();
    
    });
     jQuery('#filter__states .filter__toggler').trigger('click');
    
    
    		
    	

The topic ‘Region selector always open’ is closed to new replies.