<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Customizing Individual Pop Ups in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386063#M57664</link>
    <description>&lt;P&gt;I'm trying to customize pop ups and insert different URL's for different location pins on the map. I figured out how to insert the link, but it keeps showing up for all of the locations' pop ups, not just that particular location. Does anyone know if it's possible to customize each pop up and how I could do that?&lt;/P&gt;</description>
    <pubDate>Fri, 23 Feb 2024 15:55:28 GMT</pubDate>
    <dc:creator>ecasto17</dc:creator>
    <dc:date>2024-02-23T15:55:28Z</dc:date>
    <item>
      <title>Customizing Individual Pop Ups</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386063#M57664</link>
      <description>&lt;P&gt;I'm trying to customize pop ups and insert different URL's for different location pins on the map. I figured out how to insert the link, but it keeps showing up for all of the locations' pop ups, not just that particular location. Does anyone know if it's possible to customize each pop up and how I could do that?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 15:55:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386063#M57664</guid>
      <dc:creator>ecasto17</dc:creator>
      <dc:date>2024-02-23T15:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Individual Pop Ups</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386215#M57668</link>
      <description>&lt;P&gt;You can create a url using the attributes from the feature. In this example, I'm creating a link using the feature's Site_ID field for an &lt;A href="https://doc.arcgis.com/en/arcgis-online/create-maps/configure-pop-ups-mv.htm#ESRI_SECTION1_F5CB09E0313A4DA1BD10F18D875FFC3F" target="_self"&gt;Arcade element&lt;/A&gt;. Since some of the features don't have an associated video, I have to check another field (VideoExists).&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var output
var url = 'https://www.sample.com/'
if ($feature.VideoExists == "Yes") {
  output = `&amp;lt;a href="${url}${$feature.Site_ID}.mp4"&amp;gt;Site ${$feature.Site_ID}&amp;lt;/a&amp;gt; video`
}

return { 
	type : 'text', 
	text : output
}&lt;/LI-CODE&gt;&lt;P&gt;Note that the code is building the url link with &lt;A href="https://developers.arcgis.com/arcade/guide/template-literals/" target="_self"&gt;template literals&lt;/A&gt;, enclosed in backticks instead of the regular quotes&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 18:52:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386215#M57668</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-02-23T18:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing Individual Pop Ups</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386315#M57673</link>
      <description>&lt;P&gt;Arcade is a good solution, but if you have unique URLs for the features, you could also store those as feature attributes and use them in the pop-up that way.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 21:30:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/customizing-individual-pop-ups/m-p/1386315#M57673</guid>
      <dc:creator>BernSzukalski</dc:creator>
      <dc:date>2024-02-23T21:30:09Z</dc:date>
    </item>
  </channel>
</rss>

