<?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 Re: Broken Links in HubSpot Footer Pointing to Shopify Pages and Blog Articles in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137838#M42764</link>
    <description>&lt;P&gt;Hi, thank you for your detailed explanation!&lt;/P&gt;&lt;P&gt;I see what you mean about needing to use link.url.href instead of just link.url, but to be honest I haven't touched the code myself — everything was built using HubSpot’s default modules or drag-and-drop editor. So I'm not sure where this logic is coming from or how I could fix it.&lt;/P&gt;&lt;P&gt;Is there a place where I can access this logic (maybe in the Design Manager or module settings)?&lt;BR /&gt;Or do I need to go into a specific coded template to find and adjust that part?&lt;/P&gt;&lt;P&gt;Right now, I still don't really understand where this link.url output is being generated from in my page setup. So any help to locate or access the right place to make that fix would be appreciated! Thank you !&lt;/P&gt;</description>
    <pubDate>Fri, 18 Apr 2025 08:51:22 GMT</pubDate>
    <dc:creator>marketinglcm</dc:creator>
    <dc:date>2025-04-18T08:51:22Z</dc:date>
    <item>
      <title>Broken Links in HubSpot Footer Pointing to Shopify Pages and Blog Articles</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137584#M42753</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm encountering a strange issue with a page I built entirely on HubSpot — including the design, content, and footer. The page is live here:&lt;BR /&gt;&lt;A href="https://blog.lescuistotsmigrateurs.com/" target="_blank"&gt;https://blog.lescuistotsmigrateurs.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;My main website is hosted on Shopify, and in the footer I created directly in HubSpot, I’ve added several links pointing to:&lt;/P&gt;&lt;P&gt;Pages on my main Shopify domain (for example: &lt;A href="https://www.lescuistotsmigrateurs.com/contact" target="_blank"&gt;https://www.lescuistotsmigrateurs.com/contact&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;Blog articles created on HubSpot (for example: /article-x)&lt;/P&gt;&lt;P&gt;The issue:&lt;BR /&gt;When clicking on these links from the HubSpot page, they return errors like "Page not found," even though:&lt;/P&gt;&lt;P&gt;The links are correctly formatted (absolute for Shopify, relative for HubSpot blog articles)&lt;/P&gt;&lt;P&gt;They work perfectly outside of the HubSpot page (when opened manually in a new tab)&lt;/P&gt;&lt;P&gt;The footer was created directly in HubSpot — not embedded or copied from Shopify&lt;/P&gt;&lt;P&gt;It feels like HubSpot is breaking the redirection or misinterpreting the links, either for external URLs or internal blog posts.&lt;/P&gt;&lt;P&gt;Has anyone experienced something similar?&lt;BR /&gt;Any ideas on what might be causing this or how to fix it?&lt;/P&gt;&lt;P&gt;Thanks in advance for your help&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 15:11:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137584#M42753</guid>
      <dc:creator>marketinglcm</dc:creator>
      <dc:date>2025-04-17T15:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Broken Links in HubSpot Footer Pointing to Shopify Pages and Blog Articles</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137655#M42757</link>
      <description>&lt;P&gt;This is what is outputted in the footer:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;li&amp;gt;
&amp;lt;a href="{url={type=EXTERNAL,%20content_id=null,%20href=https://www.lescuistotsmigrateurs.com/pages/a-propos,%20href_with_scheme=https://www.lescuistotsmigrateurs.com/pages/a-propos},%20open_in_new_tab=false,%20no_follow=true,%20sponsored=false,%20user_generated_content=false,%20rel=nofollow}"&amp;gt;Notre mission&amp;lt;/a&amp;gt;
&amp;lt;/li&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like you're using something like {{ link.url }} in your code but if you break down the output above, you see that you need to go down further to get access to the url: {{ link.url.href }}.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A cleaned up example of the link field output&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  no_follow=false, 
  open_in_new_tab=false, 
  rel=, 
  sponsored=false, 
  url={
    type=EXTERNAL, 
    content_id=null, 
    href=https://google.com, 
    href_with_scheme=https://google.com
  }, 
  user_generated_content=false
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Breaking down the above varaible/values:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;link.no_follow = false&lt;/P&gt;&lt;P&gt;link.open_in_new_tab = false&lt;/P&gt;&lt;P&gt;link.rel =&amp;nbsp;&lt;/P&gt;&lt;P&gt;link.sponsored = false&lt;/P&gt;&lt;P&gt;link.url.type = EXTERNAL&lt;/P&gt;&lt;P&gt;link.url.content_id = null&lt;/P&gt;&lt;P&gt;link.url.href=&lt;A href="https://google.com" target="_blank"&gt;https://google.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;link.url.href_with_scheme=&lt;A href="https://google.com" target="_blank"&gt;https://google.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;link.user_generated_content = false&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 17:08:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137655#M42757</guid>
      <dc:creator>MichaelMa</dc:creator>
      <dc:date>2025-04-17T17:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Broken Links in HubSpot Footer Pointing to Shopify Pages and Blog Articles</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137838#M42764</link>
      <description>&lt;P&gt;Hi, thank you for your detailed explanation!&lt;/P&gt;&lt;P&gt;I see what you mean about needing to use link.url.href instead of just link.url, but to be honest I haven't touched the code myself — everything was built using HubSpot’s default modules or drag-and-drop editor. So I'm not sure where this logic is coming from or how I could fix it.&lt;/P&gt;&lt;P&gt;Is there a place where I can access this logic (maybe in the Design Manager or module settings)?&lt;BR /&gt;Or do I need to go into a specific coded template to find and adjust that part?&lt;/P&gt;&lt;P&gt;Right now, I still don't really understand where this link.url output is being generated from in my page setup. So any help to locate or access the right place to make that fix would be appreciated! Thank you !&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 08:51:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137838#M42764</guid>
      <dc:creator>marketinglcm</dc:creator>
      <dc:date>2025-04-18T08:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Broken Links in HubSpot Footer Pointing to Shopify Pages and Blog Articles</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137900#M42766</link>
      <description>&lt;P&gt;Normally, footers use the hubspot/menu.module to make use of the Hubspot Navigation available in settings. It looks like the modile you're using is coded incorrectly to use Link fields.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure what Theme you're using or what module you're using but yes, you would be able to go Design Manager and find the module to edit it. However, if it's Theme you downloaded from the Marketplace, you would need to make a child theme and edit it there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 12:44:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Broken-Links-in-HubSpot-Footer-Pointing-to-Shopify-Pages-and/m-p/1137900#M42766</guid>
      <dc:creator>MichaelMa</dc:creator>
      <dc:date>2025-04-18T12:44:37Z</dc:date>
    </item>
  </channel>
</rss>

