Danielhessel

Member

Forum Replies Created

  • In reply to: Feed Issue

    #23283

    I asked a friend of mine to look at it and he made the following changes that worked for me at least.

    Search for raquo in the theme-head.php and you should find something like this

    if ( $graphene_settings['custom_site_title_frontpage']) {
    $title = $graphene_settings['custom_site_title_frontpage'];
    $title = str_replace( '#site-name', get_bloginfo( 'name' ), $title);
    $title = str_replace( '#site-desc', get_bloginfo( 'description' ), $title);
    } else {
    $title = get_bloginfo( 'name' ) . " » " . get_bloginfo( 'description' );

    }

    } else {
    if ( $graphene_settings['custom_site_title_content'] ) {
    $title = $graphene_settings['custom_site_title_content'];
    $title = str_replace( '#site-name', get_bloginfo( 'name' ), $title );
    $title = str_replace( '#site-desc', get_bloginfo( 'description' ), $title );
    $title = str_replace( '#post-title', $default_title, $title );
    } else {
    $title = $default_title . " » " . get_bloginfo( 'name' );

    Replace the whole thing with this

    if ( $graphene_settings['custom_site_title_frontpage']) {
    $title = $graphene_settings['custom_site_title_frontpage'];
    $title = str_replace( '#site-name', get_bloginfo( 'name' ), $title);
    $title = str_replace( '#site-desc', get_bloginfo( 'description' ), $title);
    } else {
    $title = get_bloginfo( 'name' ) . $sep . get_bloginfo( 'description' );
    }

    } else {
    if ( $graphene_settings['custom_site_title_content'] ) {
    $title = $graphene_settings['custom_site_title_content'];
    $title = str_replace( '#site-name', get_bloginfo( 'name' ), $title );
    $title = str_replace( '#site-desc', get_bloginfo( 'description' ), $title );
    $title = str_replace( '#post-title', $default_title, $title );
    } else {
    $title = $default_title . $sep . get_bloginfo( 'name' );

    The lines “getbloginfo” and “deafault_title” have changed into something that doesn’t reference the raquo at all and that worked for me. Since I pretty much have no idea what I’m doing when it comes to php-code, I won’t guarantee anything, but it worked for me at least.

    In reply to: Feed Issue

    #23281

    I still get a “&raquo” error for my feed ever after replacing the code. Any new ideas what could be causing it?. Guess I’ll have to use another theme until further notice :/

Viewing 2 posts - 1 through 2 (of 2 total)