Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Sticky problem

    #14032

    Hurm..nothing changed with regard to sticky post in version 1.3. URL to the site?

    Admin

    If you want to increase the width of the theme, there’s several places that needs modifying. Try visiting this topic for a general direction on how to do it: https://forum.graphene-theme.com/topic/in-focus-stillworxcom#post-975

    Also, notice that the default width of the theme has been increased from 900px at the time the topic above was written, to the current width of 960px.

    Admin

    In reply to: Volunteer for Theme Testing

    #11111

    Added! Thanks Adrianw.

    Admin

    In reply to: Adsense

    #13716

    If you just want to place a small ad on the sidebar and footer, you can just use the Text Widget and place it in the sidebar and the footer sidebar area.

    Admin

    In reply to: Problem with comments metatags

    #14340

    Hurm..that’s really weird…is there any kind of plugin you’re using? It may be the translation plugin, though I am not sure. Haven’t encountered this before.

    Admin

    In reply to: Default header behaviour

    #14342

    Easiest to just resize the header yourself using CSS:

    #header{
    height: 80px;
    }
    .header_title,
    .header_desc{
    top: 10px;
    }
    Admin

    In reply to: Make my site live?

    #14336

    Erm..it depends on how experienced you are, really. Publishing a website live can be trivial if you’ve done it before, but if this is your first time, it can probably be a bit confusing.

    There’s a series of steps that you need to take to publish a website. Generally, this is what you have to do:

    1. Subscribe to a web server account and register a domain name

    2. Upload all the WordPress files to the server

    3. Transfer the WordPress database from your local server to the web server

    And yes, it is still possible to edit the website once it’s up.

    Admin

    In reply to: Adding Posts to a separate page

    #14323

    Erm.. the easiest way I can think of is to set the front page to show posts only from a certain category, and then create a new template file that will show posts only from another certain category in the other page that you created.

    Something like this:

    1) Set “Front page posts categories” to the category of posts you want to show in the front page via WP Admin > Appearance > Graphene Options > Front Page Options.

    2) Create a new page that you want the second set of posts to be displayed. Let’s say you name it ‘Awesome’.

    3) Create a new file in your child theme’s directory and name it page-awesome.php. The naming is important here. You must name the file using the page’s slug (in this case ‘awesome’) and prefixed by page-.

    4) Insert this code inside the page-awesome.php file:

    <?php
    global $graphene_settings;
    get_header();
    global $wp_query;
    $cat = 1; // This should be the ID of the category to display the posts from
    $args = wp_parse_args(array('cat' => $cat, 'paged' => get_query_var('paged')), $query_string);
    query_posts($args);
    $wp_query->is_home = true;

    get_template_part('loop', 'index');

    get_footer(); ?>

    5) Assign the posts to be displayed in the second page the category that you have defined in the code above.

    Admin

    In reply to: Sub Menu

    #14322

    Add this to your child theme’s style.css file:

    #nav .menu ul li a,
    #nav .menu ul li a:visited{
    padding: 5px;
    }
    #nav .menu li ul ul {
    margin-top: -28px;
    }
    Admin

    In reply to: Remove child pages displayed on the bottom

    #13930

    WP Admin > Appearace > Graphene Options > Child Page Options > Hide child page listings

Viewing 10 posts - 4,951 through 4,960 (of 6,030 total)