Skip to main content

Hide map from job ad

In this guide, you will learn how to hide the map either from a particular job ad or from all job ads (organization-wide). The maps are fetched from the company profile selected in the specific position as indicated in the picture below.

TalentAdore CS Team avatar
Written by TalentAdore CS Team
Updated over 4 months ago

Screenshot


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;

}

Screenshot

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;

}

Screenshot

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

Did this answer your question?