Remove blip title from map

Hey!
How can I remove these makers? i already removed the blips from map itself but i cant get rid of these :frowning:

Thanks! :slight_smile:

image

Hello! goto esx_drugs/client/main lua. then look for this:

Citizen.CreateThread(function()
	for k,v in pairs(Config.Zones) do
		local blip = AddBlipForCoord(v.x, v.y, v.z)

		SetBlipSprite (blip, v.sprite)
		SetBlipDisplay(blip, 4)
		SetBlipScale  (blip, 0.9)
		SetBlipColour (blip, v.color)
		SetBlipAsShortRange(blip, true)

		BeginTextCommandSetBlipName("STRING")
		AddTextComponentString(v.name)
		EndTextCommandSetBlipName(blip)
	end
end)```
 
comment it with  **--** or delete the lines