Support » Themes and Templates » [Theme: Revelar] Theme does not load (i see just text)

  • Resolved gerard99

    (@gerard99)


    Hello,
    i have a problem with Automattic’s theme “Revelar”. Unfortunately it does not work properly on my blog – there is no effects, colours etc. as on screen. I see text and nothing more.
    I deleted it and uploaded one more time and there is the same issue all the time.
    I don’t know what to do, because other themes work great. There is a problem only with this theme.

    Screenshot: link
    “Demo”: link
    Theme: link (i downloaded version for self hosted websites)

    Thanks for your time.

    -EDIT-
    I repaired it… Somebody forgot about including “style.css”. I added ” <link rel=”stylesheet” type=”text/css” href=”http://mydomain.com/wp-content/themes/revelar/style.css”>&#8221; and it now works properly.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter gerard99

    (@gerard99)

    I repaired it… Somebody forgot about including “style.css”. I added ” <link rel=”stylesheet” type=”text/css” href=”http://mydomain.com/wp-content/themes/sukko/style.css”>&#8221; and it now works properly.

    Hello Gerard99, can you explain where do you write this?
    I have the same problem with this theme
    Thx

    Thread Starter gerard99

    (@gerard99)

    Yes sure.
    Open “/revelar/header.php” file, then find <head></head> tags

    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    
    <?php wp_head(); ?>
    </head>

    Add somewhere
    <link rel="stylesheet" type="text/css" href="http://mydomain.com/wp-content/themes/revelar/style.css">

    For example your <head></head> tags should look like this

    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
    <link rel="stylesheet" type="text/css" href="http://mydomain.com/wp-content/themes/revelar/style.css">
    <?php wp_head(); ?>
    </head>

    Hope it helped.

    @gerrard99 I have a question!!
    I see that you are very knowledgeable in the Revelar Theme and would really appreciate your help!

    I am trying to upload a photo on the Revelar theme home page before you actually click it to see a blog post, and it just has an image of a gray box with a smaller white box with lines within it. It won’t let me click on it or upload a photo. Any suggestions? Let me know as soon as possible. I’d really appreciate it!

    Thank you!

    The display issue with Revelar is caused by a mistake in how the Genericons stylesheet is enqueued in the Theme Functions file at or about line 136…
    wp_enqueue_style( 'revelar-styles', get_stylesheet_uri(), array( 'genericons' ) );
    This should be edited to…
    wp_enqueue_style( 'revelar-styles', get_stylesheet_uri(), array( 'revelar-genericons' ) );
    Using enqueue is the preferable way to link a stylesheet rather than using <link> in the header.
    This applies to version 1.0.2 of Revelar – future versions of Revelar might correct the mistake.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Theme: Revelar] Theme does not load (i see just text)’ is closed to new replies.