Join our new community forum for support & discussion

Join Now

Home Support Themes TaskHive Possible to show all services on the map?

Possible to show all services on the map?

  • Author
    Posts
  • ThomasB

    Hi Ihor,

    Three questions:

    1: Currently, the map on the sidebar shows services on the actual page, and not all services. How do I change this to show all services and not just those which are present on the page?

    2: How do I make the location not mandatory when submitting a new service?

    3: Is is possible to allow users to add several locations?

    Thanks!

    Thomas

    ihor developer

    Hi,

    1. There’s no such option, this would significantly slow down the site (with a lot of map markers). I also noticed that popular listing sites also display listings from the current page/area only.

    2. Please try using this code snippet:

    add_filter(
    	'hivepress/v1/models/listing/attributes',
    	function( $attributes ) {
    		if ( isset( $attributes['location'] ) ) {
    			$attributes['location']['edit_field']['required'] = false;
    		}
     
    		return $attributes;
    	},
    	1000
    );

    3. It’s possible only via separate listings at the moment.

    ThomasB

    Thanks Ihor 🙂

Viewing 3 posts - 1 through 3 (of 3 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.