Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Scriptonite

    (@scriptonite)

    This is a different issue than my plugin is designed to fix. I am guessing you have found the issue however because your feed does appear to be working correctly.

    interuy

    (@interuy)

    Hello

    I have a similar error and I can’t found the solution.
    Maybe do you know some script to fix it?

    http://www.balkanscountries.info/feed

    Message
    error on line 11 at column 49: Extra content at the end of the document

    I looked at
    http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.balkanscountries.info%2Ffeed%2F

    Thanks for your support.
    Regards

    Plugin Author Scriptonite

    (@scriptonite)

    This looks like an issue with the NextGen Gallery Plugin, I would disable it to see if that resolves the issue. You can also try this code in your theme functions file to see if it fixes it.

    add_filter( "the_content_feed", "the_rss_feedfix_2" );
    function the_rss_feedfix_2($content){
    $pos =  strpos($content,'<?xml version');
    $content = substr($content, $pos);
    return $content;
    }

    If the nextgen footer is in fact causing the issue you can also perhaps use the remove_anonymous_object_filter like in the article here:
    http://wordpress.stackexchange.com/questions/57079/how-to-remove-a-filter-that-is-an-anonymous-object

    with:

    function rss_ngg_footer_disable(){
        remove_anonymous_object_filter('wp_footer','C_Photocrati_Resource_Manager','print_marker');
    }
    add_action('wp_footer', 'rss_ngg_footer_disable', -2);

    Let me know if either of these work for you.

    az57chevy

    (@az57chevy)

    I had a similar message for line 2 and deactivating Next Gen Gallery solved the issue. Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Feed still not working’ is closed to new replies.