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
Your “Contact Us” menu item is linking to the home page as well, so WordPress (rightly) thinks that it is the current page, and mark it so. Change the link for that menu item.
Admin
In reply to: how to change "leave a reply" of comment form with out using chlid theme?
April 23, 2013 at 2:21 am #37799Marking thread as resolved. You can do this yourself as well.
Quote:Thanks so much . I cannot donate money but is there any other way i could help you guys ?See this page: http://docs.graphene-theme.com/Ways_to_contribute
Admin
In reply to: Cannot hide sidebar when creating custom page template
April 23, 2013 at 2:20 am #37826Can you just put the JavaScript code into the page content itself just like any other content, but using code view in the WordPress’ Edit Page screen?
Admin
In reply to: Multilingual posts category problem after updating to 1.8.3
April 23, 2013 at 2:18 am #36171Quote:Quote:do the posts that belong to the “Front Page EN” category belongs to the “News” category as well?yes they do
In that case, check the setting for “Exclude the categories from posts listing” option in Graphene Options > Slider Options. It should be set to disabled.
Admin
What’s the URL to the site where it’s not working?
Admin
Try resetting the theme’s options and set them again. You can also export the settings first as backup just in case that doesn’t fix it.
Admin
In reply to: I just did a custom footer. It works but when logged into my site the top dashboard bar is missing
April 22, 2013 at 6:02 am #37771Just copy the content of the theme’s
footer.phpfile. Then, replace the entire portion of the code below with your custom footer. It’ll be much easier.<div id="footer" class="clearfix">
<?php if ( ! $graphene_settings['hide_copyright'] ) : ?>
<div id="copyright">
<h3><?php _e('Copyright', 'graphene'); ?></h3>
<?php if ( $graphene_settings['copy_text'] == '' && ! $graphene_settings['show_cc'] ) : ?>
<p>
<?php printf( '© %1$s %2$s.', date( 'Y' ), get_bloginfo( 'name' ) ); ?>
</p>
<?php elseif ( ! $graphene_settings['show_cc'] ) : ?>
<?php
if ( ! stristr( $graphene_settings['copy_text'], '</p>' ) ) { $graphene_settings['copy_text'] = wpautop( $graphene_settings['copy_text'] ); }
echo $graphene_settings['copy_text'];
?>
<?php endif; ?>
<?php if ( $graphene_settings['show_cc'] ) : ?>
<?php /* translators: %s will replaced by a link to the Creative Commons licence page, with "Creative Commons Licence" as the link text. */?>
<p>
<?php printf( __( 'Except where otherwise noted, content on this site is licensed under a %s.', 'graphene' ), '<a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">' . __( 'Creative Commons Licence', 'graphene' ) . '</a>' ); ?>
</p>
<p class="cc-logo"><span><?php _e( 'Creative Commons Licence BY-NC-ND', 'graphene' ); ?></span></p>
<?php endif; ?>
<?php do_action('graphene_copyright'); ?>
</div>
<?php endif; ?>
<?php if ( has_nav_menu( 'footer-menu' ) || ! $graphene_settings['hide_return_top'] ) : ?>
<div class="footer-menu-wrap">
<ul id="footer-menu" class="clearfix">
<?php /* Footer menu */
$args = array(
'container' => '',
'fallback_cb' => 'none',
'depth' => 2,
'theme_location' => 'footer-menu',
'items_wrap' => '%3$s'
);
wp_nav_menu(apply_filters('graphene_footer_menu_args', $args));
?>
<?php if ( ! $graphene_settings['hide_return_top'] ) : ?>
<li class="menu-item return-top"><a href="#"><?php _e('Return to top', 'graphene'); ?></a></li>
<?php endif; ?>
</ul>
</div>
<?php endif; ?>
<?php if ( ! $graphene_settings['disable_credit'] ) : ?>
<div id="developer" class="grid_7">
<p>
<?php /* translators: %1$s is the link to WordPress.org, %2$s is the theme's name */ ?>
<?php printf( __('Powered by %1$s and the %2$s.', 'graphene'), '<a href="http://wordpress.org/">WordPress</a>', '<a href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">' . __('Graphene Theme', 'graphene') . '</a>'); ?>
</p>
<?php do_action('graphene_developer'); ?>
</div>
<?php endif; ?>
<?php do_action('graphene_footer'); ?>
</div><!-- #footer -->Also, make sure that you’re aware of the caveat of replacing any of the theme’s template files with your own:
http://docs.graphene-theme.com/Customisation_using_a_child_theme#Special_consideration
Admin
How did you change the website width? Via the theme’s Column Width options?
Admin
Try this:
.sidebar #tweetfollow {
text-align: center;
}
.twitter-follow-button {
width: 150px !important;
}Admin
OK, we’ll fix this in the next update. You can also get the fix now by replacing the whole content of the theme’s
admin/options-init.phpfile with the updated one here:https://graphene.googlecode.com/svn/trunk/graphene/admin/options-init.php
