Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #241981

    Since last update. 2.6.2 the RSS-Feed is not working anymore.
    There was also a update on the NGG.
    Seems to be a combination of NGG and the theme.
    On a other domain the same NGG version is working without any problem with the twenty14 theme.

    On this domain with enfold theme the rss feed only works if i disable the NGG.

    http://www.act-thielmann.at

    At the rss there is in front added this, which breaks it.

    <!– ngg_resource_manager_marker –>
    <script type=’text/javascript’>
    /* <![CDATA[ */
    var avia_framework_globals = avia_framework_globals || {};
    avia_framework_globals.frameworkUrl = ‘http://www.act-thielmann.at/wp/wp-content/themes/enfold/framework/&#8217;;
    avia_framework_globals.installedAt = ‘http://www.act-thielmann.at/wp/wp-content/themes/enfold/&#8217;;
    avia_framework_globals.ajaxurl = ‘http://www.act-thielmann.at/wp/wp-admin/admin-ajax.php?lang=de&#8217;;
    /* ]]> */
    </script>

    #242652

    Hey romankornfeld!

    Try following fix – open up wp-content/themes/enfold/framework/php/class-superobject.php and replace:

    
    		function set_javascript_framework_url()
    		{
    

    with

    
    		function set_javascript_framework_url()
    		{
    				 if(is_feed()) return;
    

    Cheers!
    Peter

    #242656

    Thanks Peter.
    Worked perfect.
    Will this also go ito the next update ?
    Or have i to do this after a version update ?

    Had also to do the same for the NGG to remove this
    <!– ngg_resource_manager_marker –>

    was searching with grep -r -i ‘ngg_resource_manager_marker –>’ ./
    to find it.
    Tried this in wp-content/plugins/nextgen-gallery/non_pope/class.photocrati_resource_manager.php

        function print_marker()                                                                                                                                                                                        
        {                                                                                                                                                                                                              
    if(is_feed()) return;                                                                                                                                                                                      
            print $this->marker;                                                                                                                                                                                       
        }    

    Seems to work.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘RSS Feed not working anymore’ is closed to new replies.