Hiding the map from a particular position
You can hide the map from a certain position simply by leaving the “Location” field empty (in the “About us” section) or by adding a piece of Custom CSS to the job ad. If you choose the latter, go to the “Preview” tab of the “Position edit” view. Click on “Advanced styling” at the top left corner to open “Custom CSS” field. Copy and paste the piece of code shown below to this field as indicated in the picture below.
.job-ad-wrapper .job-ad-map {
display: none;
}
After saving changes, the map is hidden from this position. The code needs to be added separately to all the positions from which you want to hide the map.
Hiding the map from all positions
If you want to hide the map from all positions, the same piece of code should be added to “Custom scripts” in “Company settings”. Only admin users are able to modify custom scripts. Copy the code shown below to the “CSS” field.
job-ad-wrapper .job-ad-map {
display: none;
}
Now the map is hidden from all your organization’s positions automatically.
