CMS Development

ThibautMX
参加者

Two RSS Feed in a RSS Feed email

解決

Hi,

 

I would like to know if there is an option to put two RSS Feed in an RSS Feed email if it´s possible to have two columns it will be awesome...

 

Is it possible?

 

Thank you very much

0 いいね!
1件の承認済みベストアンサー
Jsum
解決策
キーアドバイザー

Two RSS Feed in a RSS Feed email

解決

@ThibautMX,

 

 Sorry, my original post was for someone else.

 

Yes this is possible. I always suggest using HubL functions for RSS feeds because they allow for more control. 

 

if it is two feed for 2 different blogs:

{% set rec_posts = blog_recent_posts('blog 1', 5) %}
{% for rec_post in rec_posts %}
    <div class="post-title">{{ rec_post.name }}</div>
{% endfor %}

{% set rec_posts = blog_recent_posts('blog 2', 5) %}
{% for rec_post in rec_posts %}
    <div class="post-title">{{ rec_post.name }}</div>
{% endfor %}

where blog 1 and blog 2 represent the blog id for 2 different blogs

 

for the same blog but two different topics:

{% set topic_posts = blog_recent_topic_posts('default', 'topic 1', 5) %}
{% for topic_post in topic_posts %}
    <div class="post-title">{{ topic_post.name }}</div>
{% endfor %}

{% set topic_posts = blog_recent_topic_posts('default', 'topic 2', 5) %}
{% for topic_post in topic_posts %}
    <div class="post-title">{{ topic_post.name }}</div>
{% endfor %}

Where topic 1 and topic 2 represent 2 different but available topics from your default blog

 

in both of these examples the 2 functions work independently. you can put them each in their own or custom html modules.  Edit the html in the for loops to be structured how you would like it to appear in the email, and style with inline css or css in the head of your email. 

元の投稿で解決策を見る

20件の返信
JQualtrough
メンバー

Two RSS Feed in a RSS Feed email

解決

This is totally possible. Using a platform like https://fliprss.com you can automate multiple RSS feeds in email campaigns. Not only that but you can match each feed to a specific subscriber interest group so subscribers receive content personalised to their interests. 

0 いいね!
Jsum
解決策
キーアドバイザー

Two RSS Feed in a RSS Feed email

解決

@ThibautMX,

 

 Sorry, my original post was for someone else.

 

Yes this is possible. I always suggest using HubL functions for RSS feeds because they allow for more control. 

 

if it is two feed for 2 different blogs:

{% set rec_posts = blog_recent_posts('blog 1', 5) %}
{% for rec_post in rec_posts %}
    <div class="post-title">{{ rec_post.name }}</div>
{% endfor %}

{% set rec_posts = blog_recent_posts('blog 2', 5) %}
{% for rec_post in rec_posts %}
    <div class="post-title">{{ rec_post.name }}</div>
{% endfor %}

where blog 1 and blog 2 represent the blog id for 2 different blogs

 

for the same blog but two different topics:

{% set topic_posts = blog_recent_topic_posts('default', 'topic 1', 5) %}
{% for topic_post in topic_posts %}
    <div class="post-title">{{ topic_post.name }}</div>
{% endfor %}

{% set topic_posts = blog_recent_topic_posts('default', 'topic 2', 5) %}
{% for topic_post in topic_posts %}
    <div class="post-title">{{ topic_post.name }}</div>
{% endfor %}

Where topic 1 and topic 2 represent 2 different but available topics from your default blog

 

in both of these examples the 2 functions work independently. you can put them each in their own or custom html modules.  Edit the html in the for loops to be structured how you would like it to appear in the email, and style with inline css or css in the head of your email. 

NadiraFant
参加者 | Diamond Partner
参加者 | Diamond Partner

Two RSS Feed in a RSS Feed email

解決

For the first example, how would i get the blog ID for two different blogs?

0 いいね!
dabroncos
投稿者

Two RSS Feed in a RSS Feed email

解決

It appears that this is just partial code to setup the RSS feed link.  How do I setup the rest of it?  With the RSS link, custom image, and formatting the same way I have it in my email?

 

0 いいね!
edgehomes
参加者

Two RSS Feed in a RSS Feed email

解決

Apologies for dragging this up again, but is there a way to have this work for external RSS feeds? Or is this only available for Hubspot Native Blogs

0 いいね!
suryast
参加者

Two RSS Feed in a RSS Feed email

解決

It works for external RSS feeds too as long as the format of your external feeds is correct. RSS XML format is very loose, so it's easy to make a mistake and see no error. Also, every web app digests RSS feeds differently. If it doesn't work you, you probably need to tweak your external RSS feeds further.

Jmdev
メンバー

Two RSS Feed in a RSS Feed email

解決

Can you provide code that works with external blogs? I have read through the documentation and there doesn't seem to be a way to provide an external blog url.

MFrankJohnson
ソートリーダー

Two RSS Feed in a RSS Feed email

解決

- see Blended RSS Feed Email for step-by-step

 

Note: Please search for recent posts as HubSpot evolves to be the #1 CRM platform of choice world-wide.

 

Hope that helps.

 

Be well,
Frank


www.mfrankjohnson.com
0 いいね!
BenMartinCURE
参加者

Two RSS Feed in a RSS Feed email

解決

The ony solution I've found for this is to use another service to combine those external feeds into one feed. I use rssmix.com for this. It's free.

robertrunyon
投稿者

Two RSS Feed in a RSS Feed email

解決

@Jsum Do you think you could help me set this up? I have no idea when it comes to custom coding or where to do it at. I am a marketing team of 1...

0 いいね!
BenMartinCURE
参加者

Two RSS Feed in a RSS Feed email

解決

I used http://www.rssmix.com to accomplish this. It will take multiple RSS feeds and give you one feed URL to use in your Hubspot email.

0 いいね!
robertrunyon
投稿者

Two RSS Feed in a RSS Feed email

解決

@BenMartinCURE would you have time to do a screen share to go over this in a little more detail? Perhaps tomorrow or next week sometime?

0 いいね!
BenMartinCURE
参加者

Two RSS Feed in a RSS Feed email

解決

@robertrunyon yes, happy to. Email me direct at ben.martin@cure.org.

robertrunyon
投稿者

Two RSS Feed in a RSS Feed email

解決

I just want anyone that reads this to know that @BenMartinCURE is outstanding! He is very articulate and tries to understand what you are trying to do! He helped me solve the issue in no time flat, and provided me with enough explanation that I could help someone with this if they need any additional help! In the event, Ben or anyone else is not able to help, please feel free to reach out to me.

0 いいね!
Heidi1
投稿者

Two RSS Feed in a RSS Feed email

解決

@BenMartinCURE or @robertrunyon was so glad to see this thread! Would either of you possibly have any time do a screenshare today or tomorrow to discus in greater detail?

0 いいね!
robertrunyon
投稿者

Two RSS Feed in a RSS Feed email

解決

@Heidi1 I can help you later this afternoon. How does 3:00 EST sound?

0 いいね!
Heidi1
投稿者

Two RSS Feed in a RSS Feed email

解決

That's perfect! Thank you. My email address is HeidiAllums3@gmail.com.

0 いいね!
BenMartinCURE
参加者

Two RSS Feed in a RSS Feed email

解決

I'm assuming this solution only works for native Hubspot blogs, not for external ones?

0 いいね!
suryast
参加者

Two RSS Feed in a RSS Feed email

解決

It works with external blogs/content too. 

0 いいね!
pixelparlordev
メンバー

Two RSS Feed in a RSS Feed email

解決

I am wondering if I am looking in the right place here. I just want to show the most recent post per category, for two categories in each email template for hubspot, coming from wordpress. This seems like one of those ultra simple things where there is just no explanation for. 

 

 

Example:

 

https://www.kloecknermetals.com/category/news/category/blog/feed/

 

This is my WP url for RSS Feeds I want to display. Right now my email remplate is showing just the two most recent from both blogs, but I need the most recent one, one from each blog category. 

0 いいね!