• Resolved tamarazambrana

    (@tamarazambrana)


    Why does the cluster count the startort as one more store? Can this be changed?

    I have tried to deactivate the startort(https://wpstorelocator.co/document/hide-start-marker/), this one disappeared from the map but it still shows on the cluster.

    I′m not sure if it′s a bugg or I don’t know how to configure it.

    Thank you,
    Tamara Zambrana

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    Adding this code to the functions.php inside your active theme folder will fix it.

    add_filter( 'wpsl_js_settings', 'custom_js_settings' );
    
    function custom_js_settings( $settings ) {
    
        $settings['excludeStartFromCluster'] = true;
    
        return $settings;
    }
    Thread Starter tamarazambrana

    (@tamarazambrana)

    Thanks! It worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Startort as one more store in the cluster’ is closed to new replies.