Remove Module Header for RSS Listing

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?

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