Feedzy stops showing images and text consitent
-
Hello,
wee use RSS Aggregator by Feedzy a long time now. Featured images and text were shown fine till now. Today I saw our feeds are broken. I did not checked them after last updates, so I am not sure if it is update related. But I guess it’s update related.
Webpage:
https://www.testing-board.com/Both feeds under topic:
“Externe weiterführende Artikel”
See here as screenshot, two feeds, one left column, one right column:
https://www.dropbox.com/s/k79x642uz243qok/Feedzy_Problem.png?dl=0When everything was fine, all images and texts (excerpt) of the images were shown consistent. If no features image is provided, our configured default image was shown. As you see in the screenshot, texts (excerpt) and images are missing (sometimes). It’s just a inconsistent mess.
I checked Plugin Settings already.
But there are not really any options which influence the results in this manner.We use some filter, but these are only about changing links and aspect ratio. Not about changing texts or remove images.
/* -------------------- FEEDZY -------------------- */ /* for FEEDZY RSS Feeds */ function bweb_feedzy_remove_link_matches( $matches ) { return $matches[2]; } function bweb_feedzy_set_h2( $content, $feedURL ) { //$pattern= '/<a.*href=\"(https?:\/\/.*)\".*>(.*)<\/a>/iU'; $content= '<h3>'.$content.'</h3>'; return $content; } //Remove the title link add_filter( 'feedzy_title_output', 'bweb_feedzy_set_h2', 9, 2 ); function bweb_feedzy_change_meta_tag( $content, $feedURL ) { //$pattern= '/<a.*href=\"(https?:\/\/.*)\".*>(.*)<\/a>/iU'; //$content= '<h2>'.$content.'</h2>'; return $content; } //Remove the title link add_filter( 'feedzy_meta_output', 'bweb_feedzy_change_meta_tag', 9, 2 ); function bweb_feedzy_remove_link( $content, $feedURL ) { $pattern= '/<a.*href=\"(https?:\/\/.*)\".*>(.*)<\/a>/iU'; $content= preg_replace_callback( $pattern, 'bweb_feedzy_remove_link_matches', $content ); return $content; } //Remove the title link add_filter( 'feedzy_thumb_output', 'bweb_feedzy_remove_link', 9, 2 ); add_filter( 'feedzy_meta_output', 'bweb_feedzy_remove_link', 9, 2 ); function bweb_feedzy_thumb_aspect_ratio( $sizes, $feedURL ) { $sizes = array( 'width' => $sizes['width'] * (16/10), 'height' => $sizes['height'] ); return $sizes; } add_filter( 'feedzy_thumb_sizes', 'bweb_feedzy_thumb_aspect_ratio', 10, 2 ); function bweb_feedzy_add_link_param_matches( $matches ) { return '<a href="' . $matches[1] . '" target="_blank" rel="nofollow"' . $matches[2] . '</a>'; } function bweb_feedzy_add_link_param( $content, $feedURL ) { $pattern= '/<a.*href=\"(https?:\/\/.*)\".*(( class="more-link"|>).*)<\/a>/iU'; $content= preg_replace_callback( $pattern, 'bweb_feedzy_add_link_param_matches', $content ); return $content; } add_filter( 'feedzy_global_output', 'bweb_feedzy_add_link_param', 9, 2 );
Example usage of feedzy shortcode:
[feedzy-rss feeds="<ListOfFeeds>" max="9" summarylength="200" feed_title="no" target="_blank" title="65" size="100" thumb="yes" default="<PathToDefaultImage>"]
And as I said, this was working fine for years/months and shows texts (excerpt) and images fine.Any help is very welcome.
If it is a bug, fast fixes are also welcome. ??Best regards
Manni- This topic was modified 4 years, 3 months ago by .
- This topic was modified 4 years, 3 months ago by .
- This topic was modified 4 years, 3 months ago by .
- This topic was modified 4 years, 3 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘Feedzy stops showing images and text consitent’ is closed to new replies.