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
This is exactly what you should check: Is its parent directory writable by the server?
If you can access the folder via ftp, chances are you can also set the folder’s permission via ftp as well. See here for more info: http://codex.wordpress.org/Changing_File_Permissions
Admin
The simplemodal login plugin probably contains an error in the javascript code, which put a stop to all other javascript in the page. Try disabling the plugin to see if it works.
Admin
You can disable the slider by going to the Graphene Options page and tick the Disable slider option.
Admin
Add this in your child theme’s
style.cssfile:#footer{
height:100px;
}Of course, you can modify the height to whatever value you want.
Admin
This bit should be outside the closing
}, like so:<?php
function graphene_custom_content(){
if (is_front_page()) {
?>
<div id="graphene_custom_content" style="text-align:center";>
<!-- The content goes here -->
MY CODE HERE
</div>
<?php
}
}
add_action('graphene_before_content', 'graphene_custom_content');
?>Note also that using the code above will cause the custom content you put in to be displayed only in the front page. If you want it to appear in all posts and pages, remove the
if (is_front_page()) {conditional and one closing}.Admin
Hurm…this is weird…it shows up fine in all my tests, and I’ve had others beta-test the theme and they didn’t report this problem.
It seems that each ping has is closed twice (two closing
</li>tags) which are messing up the layout. Any chance you have modified the code in some way? It’s also probably one of the plugins you’re using. Try deactivating them one by one to see if any of them caused the problem.Admin
Is the website using the Custom Menu functionality? It should be in Appearance > Menus. You can set up your own menu there.
Admin
The theme does not have this functionality, but you can add it yourself.
Admin
In reply to: landing page to show recent post with comments, wordpress.com example
January 22, 2011 at 3:01 am #12213Hi evelyn,
The theme is showing the link to comments in the front page by default. But it probably doesn’t if you use a static front page..
Hurm..if you wanna force the comment to be shown, just add this code into your child theme’s functions.php:
function graphene_force_comment(){
$withcomments = 1; // force comments form and comments to show on front page
comments_template();
}
add_action('graphene_bottom_content', 'graphene_force_comment');Note that this code is untested, and it assumes that the code you provide above works.
Admin
It’s probably much easier if you use a photo gallery plugin, like the NextGen Gallery.
