Viewing 7 replies - 1 through 7 (of 7 total)
  • Have you tried:

    – deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the Twenty Eleven theme to rule out any theme-specific problems.

    resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

    – re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress.

    Theme Author Sayontan Sinha

    (@sayontan)

    Yes, sorry about that. There is a bug in this version. To fix it, you can go to wp-content/themes/suffusion/functions/filters.php. Near the end of this file you will see this line (in the function suffusion_modify_title):

    if ((isset($suffusion_list_layout) && $suffusion_list_layout) || (isset($suffusion_mosaic_layout) && $suffusion_mosaic_layout)) {
    		return $original_title;
    	}

    Change it to:

    if ((isset($suffusion_list_layout) && $suffusion_list_layout) || (isset($suffusion_mosaic_layout) && $suffusion_mosaic_layout) || is_feed()) {
    		return $original_title;
    	}

    You might have to wait for a bit for your changes to show up, depending on the frequency with which your feed is updated.

    I will release a patch for this tonight.

    Thread Starter gsvalentine

    (@gsvalentine)

    Thanks very much. All working now :).

    Hi, I checked the line but still does not work.

    When I enter the feed’s link wordpress is saving looping.
    When I run website it loses widget.

    Theme Author Sayontan Sinha

    (@sayontan)

    Hi, I checked the line but still does not work.

    I am surprised you are having to change the line at all. I had fixed it and released the patch at the time of my previous post here, so if things are not working for you, it is probably because of a non-Suffusion reason.

    Oh my god! okay. so I’ll try to find the problem.

    No way. I insert my feed and shows that he is saved, but when I leave the widgets page and return it is not there.

    A feed can be placed anywhere on the site? It has a specific location?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Theme: Suffusion] RSS feeds not working’ is closed to new replies.