Skip to main content

Hide map from job ad

Hide the map either from an individual job advertisement or from all job advertisements across the organization. The map's location information comes from the company profile, which is selected for each job advertisement.

Written by TalentAdore CS Team

The Company Profile is selected either:

  1. When creating a new job:

  2. Or by editing an existing job under "Company details" -> "Company Profile"

The geographical location displayed on the map in a job advertisement is determined by the 'location' section of the company profile you are using for that job advertisement. The map can be hidden either from an individual job advertisement or, alternatively, from all job advertisements of your company.

Hiding the map from an individual job advertisement
You can hide the map from an individual job advertisement by going to "Company details" and clicking "Hide map from the job ad"


...or by adding a CSS code snippet to the "edit job posting" tab. If you choose the latter option, click to open "Advanced styling". A CSS field will appear where you can paste the following code snippet:

.job-ad-wrapper .google-map {
display: none;
}

The same code must be added separately to all job advertisements from which the map is to be hidden.

Hiding the map from all job advertisements in the organization
If you wish to hide the map from all job advertisements across the organization, the same CSS code must be added to the "Custom scripts" section in "Company settings". Only administrators can modify custom scripts. You can copy the entire code shown below into the "CSS" field.

.job-ad-wrapper .google-map {
display: none;
}

Now the map is hidden from all your organization’s positions automatically.

Did this answer your question?