Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Hurm..nothing changed with regard to sticky post in version 1.3. URL to the site?
Admin
In reply to: ChildThemes Settings (1.3) ignored and questions regarding general layout
May 26, 2011 at 8:15 am #14316If 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
Added! Thanks Adrianw.
Admin
Admin
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
Easiest to just resize the header yourself using CSS:
#header{
height: 80px;
}
.header_title,
.header_desc{
top: 10px;
}Admin
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
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 bypage-.4) Insert this code inside the
page-awesome.phpfile:<?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
Admin
WP Admin > Appearace > Graphene Options > Child Page Options > Hide child page listings
