CMS Development

coreysmith
Top Contributor | Gold Partner
Top Contributor | Gold Partner

Remove Module Header for RSS Listing

SOLVE

I would like to remove the module header for my RSS listing. I am using the HUBL module to insert the listing.

 

I know that leaving it blank will allow the rss listing header to be blank but it leaves the <h3> tag as an empty tag and I need to remove that tag as per WCAG guidelines/recommendations.

 

How can I edit the HTML output of an RSS listing module? Or, is there a better / another option for listing RSS feeds that allows for a greater level of customization?

--
Corey Smith
Directory of Digital Marketing
corey@intuitivewebsites.com
0 Upvotes
1 Accepted solution
TRooInbound
Solution
Key Advisor

Remove Module Header for RSS Listing

SOLVE

Hi @coreysmith,

 

Yes, you can remove H3 tag using javascript 

Like this,

$('.hs_cos_wrapper_widget hs_cos_wrapper_type_rss_listing > h3').remove()

OR 

Use HUBL Code for Blog RSS Listing, in this case, you can do custom coding add whatever you want to add or remove.

both work same.

  

Hope this work!

Thanks

View solution in original post

0 Upvotes
1 Reply 1
TRooInbound
Solution
Key Advisor

Remove Module Header for RSS Listing

SOLVE

Hi @coreysmith,

 

Yes, you can remove H3 tag using javascript 

Like this,

$('.hs_cos_wrapper_widget hs_cos_wrapper_type_rss_listing > h3').remove()

OR 

Use HUBL Code for Blog RSS Listing, in this case, you can do custom coding add whatever you want to add or remove.

both work same.

  

Hope this work!

Thanks

0 Upvotes