Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter EndTheTrendNow

    (@endthetrendnow)

    Yep it is definitely broken. Just tried it on another site where I had an older version of WP and just upgraded that one as well.

    hmmm same here. I saw that bkmacdaddy is looking for a new developer to help him maintaining this plugin. I hope this will be fixed.
    Bummer if it doensn’t it is a great plugin.

    Yes it broke on my page as well. None of the images are showing. I really hope it gets fixed as well! https://www.autumnorphey.com/gallery

    Something is wrong with how the images are now inserted. If I look at the source code there’s no link here img src=””. So I’m trying to figure out how to get the post thumbnail now in the code. Just wanted to update you all. If I find the fix I’ll post it here. I’ll be working on this for the rest of the morning…lol. This is like the coolest plugin EVER! ??

    With the update of how to create image galleries with wordpress 3.5 I’ve read you cannot “insert” an image anymore. I think the problem is here:

    if ($thumb = $item->get_item_tags(SIMPLEPIE_NAMESPACE_MEDIARSS, ‘thumbnail’) ) {
    $thumb = $thumb[0][‘attribs’][”][‘url’];
    $content .= ‘<img src=”‘.$thumb.'”‘;
    $content .= ‘

    OH MY I FIGURED IT OUT!! After searching and searching, some return value on one of their functions must have changed. Just delete the section of code below in the plugin file (pinterest-rss-widget/pinterest-rss-widget.php) and the images will show up again! YAHOO!!
    } else if ( $useenclosures == ‘yes’ && $enclosure = $item->get_enclosure() ) {
    $enclosure = $item->get_enclosures();
    $content .= ‘<img src=”‘.$enclosure[0]->get_link().'”‘;
    $content .= ‘ alt=”‘.$item->get_title().'”/>’;

    Thread Starter EndTheTrendNow

    (@endthetrendnow)

    Milah227,

    That worked like a charm. Thanks for the information and finding a fix.

    1. Go To Plugins
    2. Click Edit for the Pinterest RSS Widget
    3. Search for “else if ( $useenclosures == ‘yes’ && $enclosure = $item->get_enclosure() ) {“
    4. Delete the code above that Milah227 specifies.

    Cheers

    Plugin Author bkmacdaddy

    (@bkmacdaddy)

    Thanks for the help and solution, Milah227. I will try to get the plugin code updated this week and the newest version in the WordPress repository so that no one will have to edit the code in the future. I really appreciate your assistance!

    Thank you very much for the fix. The plugin is awesome !

    Plugin Author bkmacdaddy

    (@bkmacdaddy)

    I’ve updated the plugin with the fix milah227 figured out. Please update and let me know if it resolves your issues. And thanks for the help, milah227!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Did WordPress 3.5 Break the Plugin? Mine doesn't seem to work anymore.’ is closed to new replies.