• First, my compliments to the makers of the Evolve Theme. It reflects weeks of quality work and is very generously given free.

    There is a bug in the Evolve Theme in that the Title of the Blog Appears twice in the RSS feed.

    The Title to the RSS feed reads as follows:

    Blog TitleBlog Title

    To solve the problem, open the basic.functions.php file in the wp-content/themes/evolve/library/functions folder, go to line 339 (or thereabouts) and find the line:

    $filtered_title = $site_name . $title;

    and comment it out by placing “//” at the beginning of the line.

    This solves the problem. I don’t think it breaks anything.

    Interestingly, the same line, with the same problem appears also in the “Pure Line” theme. These lines are not there in the “Precisio” theme.

    http://wordpress.org/extend/themes/evolve/

Viewing 1 replies (of 1 total)
  • Thread Starter investor

    (@investor)

    The “$filtered_title” variable is used in a couple of other places in the basic-functions.php file. So, instead of commenting it out completely, a better solution may to delete the “$site_name .”.

    The line will now read:

    $filtered_title = $title;

Viewing 1 replies (of 1 total)
  • The topic ‘[Theme: EvoLve] Title Appearing Twice In RSS Feed (Solution)’ is closed to new replies.