<?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 Back end logic issue in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220355#M44453</link>
    <description>&lt;P&gt;Our blogs are having a back end logic issue. Any blogs that have been tagged only once using the correctly associated tag, will not populate when that tag is selected in our category module. It seems that as long as a blog has been tagged at least twice it will populate.&amp;nbsp;&lt;BR /&gt;The other issue is that tags associated with our Client Only Blog are showing up in the Prospect facing blog even though they are two separate blogs. The category module seems to populate from both blogs but we don't want it to. Can anyone help me address either of these issues?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Nov 2025 18:37:02 GMT</pubDate>
    <dc:creator>BC428</dc:creator>
    <dc:date>2025-11-05T18:37:02Z</dc:date>
    <item>
      <title>Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220355#M44453</link>
      <description>&lt;P&gt;Our blogs are having a back end logic issue. Any blogs that have been tagged only once using the correctly associated tag, will not populate when that tag is selected in our category module. It seems that as long as a blog has been tagged at least twice it will populate.&amp;nbsp;&lt;BR /&gt;The other issue is that tags associated with our Client Only Blog are showing up in the Prospect facing blog even though they are two separate blogs. The category module seems to populate from both blogs but we don't want it to. Can anyone help me address either of these issues?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 18:37:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220355#M44453</guid>
      <dc:creator>BC428</dc:creator>
      <dc:date>2025-11-05T18:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220357#M44454</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/809810"&gt;@BC428&lt;/a&gt;&amp;nbsp;can you post the code from your category module. People are likely going to struggle to help you otherwise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 18:42:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220357#M44454</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-11-05T18:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220368#M44457</link>
      <description>&lt;P&gt;This is the code I found in the Prospect facing blog that indicates possibly tags:&amp;nbsp;&lt;BR /&gt;{# &amp;lt;div class="growfast-blog__header"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__bg"&amp;gt;&lt;BR /&gt;{% if theme.blog.header_background.src %}&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__bg--image" style='background-image: url("{{ theme.blog.header_background.src }}");'&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content-inner"&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;{{ group.public_title }}&amp;lt;/h1&amp;gt;&lt;BR /&gt;{% set blog_tags = blog_tags(group.id, 250) %}&lt;BR /&gt;{% if blog_tags %}&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content-inner--tags"&amp;gt;&lt;BR /&gt;{% for tag in blog_tags %}&lt;BR /&gt;&amp;lt;a class="growfast-blog__header__content-inner--tag-link" href="{{ blog_tag_url(group.id, tag.slug) }}" rel="tag"&amp;gt;{{ tag.name }}&amp;lt;/a&amp;gt;&lt;BR /&gt;{% endfor %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt; #}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this is the code from the Client Only Blog:&amp;nbsp;&lt;BR /&gt;{# &amp;lt;div class="growfast-blog__header"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__bg"&amp;gt;&lt;BR /&gt;{% if theme.blog.header_background.src %}&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__bg--image" style='background-image: url("{{ theme.blog.header_background.src }}");'&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content-inner"&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;{{ group.public_title }}&amp;lt;/h1&amp;gt;&lt;BR /&gt;{% set blog_tags = blog_tags(group.id, 250) %}&lt;BR /&gt;{% if blog_tags %}&lt;BR /&gt;&amp;lt;div class="growfast-blog__header__content-inner--tags"&amp;gt;&lt;BR /&gt;{% for tag in blog_tags %}&lt;BR /&gt;&amp;lt;a class="growfast-blog__header__content-inner--tag-link" href="{{ blog_tag_url(group.id, tag.slug) }}" rel="tag"&amp;gt;{{ tag.name }}&amp;lt;/a&amp;gt;&lt;BR /&gt;{% endfor %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt; #}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does this help&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/146956"&gt;@BarryGrennan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 18:59:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220368#M44457</guid>
      <dc:creator>BC428</dc:creator>
      <dc:date>2025-11-05T18:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220375#M44458</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/809810"&gt;@BC428&lt;/a&gt;&amp;nbsp;that looks to me like it's just for showing the title of the blog on the list page&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;h1&amp;gt;{{ group.public_title }}&amp;lt;/h1&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;That shows the name of the blog in a h1 tag&lt;BR /&gt;&lt;BR /&gt;and then listing the actual tags associated with that blog&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% set blog_tags = blog_tags(group.id, 250) %}
{% if blog_tags %}
&amp;lt;div class="growfast-blog__header__content-inner--tags"&amp;gt;
{% for tag in blog_tags %}
&amp;lt;a class="growfast-blog__header__content-inner--tag-link" href="{{ blog_tag_url(group.id, tag.slug) }}" rel="tag"&amp;gt;{{ tag.name }}&amp;lt;/a&amp;gt;
{% endfor %}
&amp;lt;/div&amp;gt;
{% endif %}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Those would be a list of the tags, not the posts themselves. And using&amp;nbsp;group.id would mean it only show tags used in the specific blog you're on.&lt;BR /&gt;&lt;BR /&gt;If you're sure that there's two seperate blogs, make sure that the tags aren't used in the&amp;nbsp;Prospect facing blog. If you click on the link for the tags that are showing in error, what posts does it show you?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 19:11:35 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220375#M44458</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-11-05T19:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220434#M44462</link>
      <description>&lt;P&gt;We do have two separate blogs. if I click on the tag link where the error seems to be it does not populate the blog that has been tagged (but only when the tag is used once). If that tag is used at least two times in different blogs then it populates below the category module as it's supposed to.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to find this though and I think this is possibly where the error is.&amp;nbsp;&lt;BR /&gt;{% set all_tags = blog_tags('default') %}&lt;BR /&gt;&amp;lt;div class="blog-tags"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;{% for tag in all_tags %}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;{% if tag.name == 'Private'%}&lt;BR /&gt;{% continue %}&lt;BR /&gt;{% endif %}&lt;BR /&gt;&amp;lt;a href="{{ blog_tag_url(group.id, tag.slug) }}" class="blog-tag-link {% if tag.slug in current_url %} active{% endif %}"&amp;gt;&lt;BR /&gt;{{ tag.name }}&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;{% endfor %}&lt;BR /&gt;&amp;lt;/div&amp;gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;__________________________________________________&lt;/P&gt;&lt;P&gt;This is the Temlate usage snippet too if that's helpful:&lt;BR /&gt;{% module "module_17623746101081" path="/GrowFast_Free_Theme_child/modules/Custom_Blog_Posts", label="Custom_Blog_Posts" %}&lt;BR /&gt;________________________________________________________&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And these are the errors that are popping up:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BC428_3-1762376129893.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/160644iFD50F5D01345979D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BC428_3-1762376129893.png" alt="BC428_3-1762376129893.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;We used Insidea as a custom developer and they created the blog page so I'm wondering if they made a mistake so it's not communicating from the back end to the front end clearly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am obviously NOT a developer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;. So if none of this makes sense just say!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 20:56:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1220434#M44462</guid>
      <dc:creator>BC428</dc:creator>
      <dc:date>2025-11-05T20:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222212#M44483</link>
      <description>&lt;P&gt;Hello Barry, I wasn't sure if you saw the last message I posted? Is that code helpful for being able to identify the issue?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 18:56:04 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222212#M44483</guid>
      <dc:creator>BC428</dc:creator>
      <dc:date>2025-11-10T18:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222426#M44489</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/809810"&gt;@BC428&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies for the delay, been dealing with family medical issues the last number of days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess now would be that the issue is within the&amp;nbsp;Custom_Blog_Posts module itself if that's what's being used to display the posts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Honestly though, I don't think posting code snippets that may or may not be related to the issue will get you closer to resolving it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd suggest you either go back to the developer to resolve the issue or hire a new developer to solve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 10:34:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222426#M44489</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-11-11T10:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222529#M44498</link>
      <description>&lt;P&gt;Hi Barry, thank you so much for getting back to me and I am sorry to hear that your family is dealing with medical issues, that can be scary. I hope everyone is okay! I agree, the code snippets won't get me closer to resolving the issue and it probably is time to hire a developer. Thank you for pointing me towards the Custom_Blog_Posts module, I think this could be correct. Kind regards, Bre&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 14:42:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222529#M44498</guid>
      <dc:creator>BC428</dc:creator>
      <dc:date>2025-11-11T14:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222993#M44509</link>
      <description>&lt;P&gt;Thank you for all the help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/146956"&gt;@BarryGrennan&lt;/a&gt;&lt;/SPAN&gt; 🧡 — Jaycee&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 15:41:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1222993#M44509</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2025-11-12T15:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Back end logic issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1224938#M44555</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/809810"&gt;@BC428&lt;/a&gt;, spotted the likely issue in your earlier post! This line: {% set all_tags = blog_tags('default') %} It's pulling tags from ALL blogs (using 'default'), not just the current one. Change it to: {% set all_tags = blog_tags(group.id) %} This should fix the cross-blog tag issue. For the single-tag problem, share that with your developer—might be a filter or limit in the Custom_Blog_Posts module logic causing it.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;STRONG&gt;Did my answer help? Please click "Mark as solution" — it helps others and means a lot to me!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I use my real experience, community knowledge, and expert tools (including AI when needed) to give the most accurate and human responses.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE width="100%" cellpadding="10"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="21.56479217603912%"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="amjad-khatri.jpg" style="width: 239px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/161203i32A562F1EC39D091/image-dimensions/239x239?v=v2" width="239" height="239" role="button" title="amjad_khatri.jpg" alt="amjad_khatri.jpg" /&gt;&lt;/span&gt;&lt;/TD&gt;&lt;TD width="53.32518337408313%"&gt;&lt;P&gt;&lt;STRONG&gt;Muhammad Amjad&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Senior Consultant • HubSpot + Web Automation Expert&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://www.upwork.com/freelancers/amjadkhatri" target="_blank" rel="noopener"&gt;Need HubSpot Help? Send Me a DM&lt;BR /&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="free-linkedin-icon-130-thumb" style="width: 23px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/161551i0AE654B00B3E1071/image-dimensions/23x23?v=v2" width="23" height="23" role="button" title="free-linkedin-icon-130-thumb" alt="free-linkedin-icon-130-thumb" /&gt;&lt;/span&gt;&lt;A href="https://linkedin.com/in/amjadkhatri" target="_blank" rel="noopener"&gt;Connect with me On LinkedIn&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Specialties:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;HubSpot CRM Setup &amp;amp; Automation&lt;/LI&gt;&lt;LI&gt;Custom Workflows &amp;amp; Email Marketing&lt;/LI&gt;&lt;LI&gt;API Integrations &amp;amp; Webhooks&lt;/LI&gt;&lt;LI&gt;WordPress + Laravel Development&lt;/LI&gt;&lt;/UL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;Available for consulting, troubleshooting &amp;amp; custom HubSpot solutions.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 06:20:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Back-end-logic-issue/m-p/1224938#M44555</guid>
      <dc:creator>amjadkhatri</dc:creator>
      <dc:date>2025-11-18T06:20:51Z</dc:date>
    </item>
  </channel>
</rss>

