-
AuthorPosts
-
March 24, 2014 at 8:56 am #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.
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/’;
avia_framework_globals.installedAt = ‘http://www.act-thielmann.at/wp/wp-content/themes/enfold/’;
avia_framework_globals.ajaxurl = ‘http://www.act-thielmann.at/wp/wp-admin/admin-ajax.php?lang=de’;
/* ]]> */
</script>March 25, 2014 at 11:02 am #242652Hey 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!
PeterMarch 25, 2014 at 11:22 am #242656Thanks 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.phpfunction print_marker() { if(is_feed()) return; print $this->marker; }
Seems to work.
-
AuthorPosts
- The topic ‘RSS Feed not working anymore’ is closed to new replies.