Feedzy Light: no html class attribute shown on page
-
How can I preserve class-attributes on my page?
I installed Feedzy Plugin in wordpress and added this hook to my theme’s function.php to get the html content into my page.
/** Hook 2019-09-23 Feedzy Plugin (RSS Feeds) * Keep HTML in feed items content * https://docs.themeisle.com/article/542-how-to-keep-html-in-feed-items-content */ add_action( 'init', 'feedzy_summary_input_remove', 99 ); function feedzy_summary_input_remove() { remove_filter('feedzy_summary_input', array( Feedzy_Rss_Feeds::instance()->get_admin(), 'feedzy_summary_input_filter' ), 9); }
In the rss feed (see above) there is a image tag with class attribute:
<a href='https://[...]' target='_blank'><img class="btn" src="https://www.schnipp-schnapp-schnappi.de/used-guitars/images/Right_Now_108x45.gif" border="0" alt="Jetzt bei Ebay: Gibson SJ-200 Masterpiece Eigener Wein Harvey Leach Akustische Gitarre J-200" /></a>
But in the sourcecode of my wordpress website the class “btn” does not show up.
<img class=" lazyloaded" src="https://www.schnipp-schnapp-schnappi.de/used-guitars/images/Right_Now_108x45.gif" data-src="https://www.schnipp-schnapp-schnappi.de/used-guitars/images/Right_Now_108x45.gif" border="0" alt="Jetzt bei Ebay: Gibson SJ-200 Masterpiece Eigener Wein Harvey Leach Akustische Gitarre J-200">
I need this class for styling the button. Thank you for your assistance!
The page I need help with: [log in to see the link]
- The topic ‘Feedzy Light: no html class attribute shown on page’ is closed to new replies.