<?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: Custom post types in Hubspot in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008290#M39852</link>
    <description>&lt;P&gt;Thank you so much!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one last question. In my blog template there's a module field "content.start_date" and a field "content.location". I want to show that in the listing, but I can't seem to import it. Do you know if it's possible?&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jul 2024 18:01:49 GMT</pubDate>
    <dc:creator>FvanderKloot</dc:creator>
    <dc:date>2024-07-11T18:01:49Z</dc:date>
    <item>
      <title>Custom post types in Hubspot</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/996793#M39643</link>
      <description>&lt;P&gt;I'm currently working on a website for a company that offers multiple courses, services, ... Each course has a lot of information, so the best practice would be to create a blog template for those detail pages, but If I do that can I create card listings to show on other pages?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 07:31:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/996793#M39643</guid>
      <dc:creator>FvanderKloot</dc:creator>
      <dc:date>2024-06-25T07:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Custom post types in Hubspot</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/996803#M39645</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/779176"&gt;@FvanderKloot&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;creating courses with a blog is a great way but could be bound to quite a lot of custom development(listing &amp;amp; post templates, emails, maybe special modules, lists...)&lt;/P&gt;
&lt;P&gt;As for your question: &lt;BR /&gt;Yes it's possible to display "course cards" on other pages.&lt;/P&gt;
&lt;P&gt;One option would be to use the &lt;A href="https://developers.hubspot.com/docs/cms/hubl/functions#blog-recent-posts" target="_blank" rel="noopener"&gt;blog_recent_posts function&lt;/A&gt;&amp;nbsp;while creating a custom module.&lt;/P&gt;
&lt;P&gt;Here's an example of a module with customizable blog(blog function) and amount(number) setting:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set rec_posts = blog_recent_posts(module.blog_select, module.amount_of_posts) %}
&amp;lt;div class="recent-courses-wrapper"&amp;gt;
{% for rec_post in rec_posts %}
    &amp;lt;div class="post-title"&amp;gt;{{ rec_post.name }}&amp;lt;/div&amp;gt;
{% endfor %}
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A few tips:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If you have Content Hub Professional you could think about creating &lt;A href="https://developers.hubspot.com/docs/cms/data/memberships" target="_blank" rel="noopener"&gt;membership pages&lt;/A&gt; and create a whole course area with a dedicated login and user area&lt;/LI&gt;
&lt;LI&gt;If you have Marketing Enterprise you could think about creating those courses with &lt;A href="https://developers.hubspot.com/blog/essentials-for-getting-started-with-custom-objects" target="_blank" rel="noopener"&gt;custom objects&lt;/A&gt; so you have the ability to create "CRM-powered" pages&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need support or have further questions - drop me a DM. I'll be happy to talk in detail&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anton&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 07:52:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/996803#M39645</guid>
      <dc:creator>Anton</dc:creator>
      <dc:date>2024-06-25T07:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Custom post types in Hubspot</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008103#M39849</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to implement the featured image it just gives the URL. Do you know how to show the actual image?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 15:53:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008103#M39849</guid>
      <dc:creator>FvanderKloot</dc:creator>
      <dc:date>2024-07-11T15:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom post types in Hubspot</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008107#M39850</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/779176"&gt;@FvanderKloot&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you have to put it in an img-tag like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;img src="{{ rec_post.featured_image }}" alt="{{ rec_post.featured_image_alt }}" class="SOME-CLASS"&amp;gt; {# please note that the featured image alt tag is different than a regular image function #}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anton&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 16:00:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008107#M39850</guid>
      <dc:creator>Anton</dc:creator>
      <dc:date>2024-07-11T16:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom post types in Hubspot</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008290#M39852</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one last question. In my blog template there's a module field "content.start_date" and a field "content.location". I want to show that in the listing, but I can't seem to import it. Do you know if it's possible?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 18:01:49 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Custom-post-types-in-Hubspot/m-p/1008290#M39852</guid>
      <dc:creator>FvanderKloot</dc:creator>
      <dc:date>2024-07-11T18:01:49Z</dc:date>
    </item>
  </channel>
</rss>

