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
Go to WP Admin > Settings > General. There, you’ll see the option for Site Title and Site Description.
Admin
Try moving it to the bottom again so that we can see it. Also, since you’re just displaying images in the slider, you might want to try using the “Background image and excerpt” style for the slider.
Admin
You should be able to set the width of the slideshow. Go to WP Admin > Gallery > Options > Slideshow > Default size. Enter
620as the width.Admin
Features are always a double-edged sword. Each added feature comes at a price, sometimes on the UI/UX, sometimes on the user-friendliness, sometimes on performance.
In this case, adding manual excerpt to Pages by default will have these effects:
1. For every page, an additional database row is added in the database, which for the majority of the users will never be used.
2. Users will likely think that manual excerpt for pages is a standard feature of WordPress. In the chance that they switch themes in the future, they’ll be baffled with the disappearance of this “standard” feature.
Item 2 above is called “theme lock-in”, which means putting up barriers on blog owners from changing themes, which is something that the Theme Review Team at the WordPress.org Theme Repository is not keen on allowing. Since every theme has to go past their scrutiny, it’s likely that this feature, and hence the theme, won’t be accepted. (And they do reject a lot of themes all the time.)
Admin
In reply to: Comment text area goes off on enabling "graphene_comment_textarea" action hook (Since 1.7)
May 10, 2012 at 10:46 am #28334Ah..yes, that action hook is before the comment textarea, so you won’t see it when you’re logged in.
There is also a
comment_formaction hook, but that is after the submit button.The only way you can add some HTML after the comment textarea is by filtering the
graphene_comment_form_argsfilter hook:/**
* Add some HTML after the comment textarea, but before the allowed tags message
*/
function graphene_comment_form_args( $args ){
$html = '<p>Some HTML content</p>';
$args['comment_notes_after'] = $html . $args['comment_notes_after'];
return $args;
}
add_action( 'graphene_comment_form_args', 'graphene_comment_form_args' );Admin
Happens all the time 🙂
Admin
In reply to: Top Bar not showing Social Media icons after new 1.7 update
May 10, 2012 at 6:57 am #28013Did you modify the theme’s
style.cssfile?Admin
URL to your site?
Admin
Moved to the Support Forum. Please post in the correct section next time. Also, provide the URL to your site so that we can take a look.
Admin
Add this line at the very top of your child theme’s
functions.phpfile:<?php
