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
Link to site?
Admin
In reply to: How do I change Powered by WordPress and the Graphene Theme. in the footer
August 30, 2012 at 10:45 pm #32168Throw this code into your child theme’s functions.php file:
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Powered by %1$s and the %2$s.' => 'This site does not have Super Cow power!',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );Obviously, change the text
This site does not have Super Cow power!to whatever text you want to put there.Admin
Marking thread as resolved. You can do this yourself as well.
Admin
Try setting a value of 200 in Graphene Options > Display > Navigation Menu Options > Dropdown menu width.
Btw, always make sure that you describe your issue with enough detail for us to know what the problem is. Just simply saying something is not working or you’re having problem does not help much. Always explain in what way is it not working, or what exactly is the problem you’re having.
Admin
Moved to Support. Please post in the correct section next time.
What changes did you make to your child theme?
Admin
Admin
Your website’s HTML code stopped right after the comment section. Try setting
WP_DEBUGtotruein thewp-config.phpfile and see what error message comes up.Admin
Quote:The question is, how do I fix it?It’s not really “fixing”, since nothing is really broken. And there’s no simple answer to that question. You’re staring down the path of website performance optimisation, which is a subject in and of itself, totally separate from website customisation.
Often the practice of optimising a website’s performance requires technical knowledge. Even installing plugins like the one Prasanna mentioned could actually make things worse for your site, if you don’t know how to properly configure it. Even some of the low-hanging fruits, like installing the WP Minify plugin to combine and minify your CSS and JS files to reduce the number of requests on every page load, often require you to at least have an idea on how to troubleshoot if the combining/minifying process didn’t go smoothly, which is not unusual.
But of course, if you’re happy with your site in terms of customisation and content at the moment, by all means go explore that path. It’s not easy, but the results will be well worth it.
Admin
It’s the
0.8in this bit:.bgimage-excerpt .slider-entry-wrap {
background: rgba(256,256,256,0.8);
}It only works in modern browsers though. If you want to make it work for IE8 and older, see this page:
Admin
Oops.. the
pxshouldn’t be in there:function graphene_custom_slider_image_width(){
return 960;
}
add_filter( 'graphene_slider_image_width', 'graphene_custom_slider_image_width' );But, Graphene 1.8 already has an option to extend the slider to the full width of the site, so you don’t need to do the above anymore.
