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
In reply to: WordPress database error since upgrading to WordPress 3.5.2
June 28, 2013 at 12:34 pm #38939Try adding this code to the top of the
graphene_get_comment_count()function in the theme’sincludes/theme-comments.phpfile and see if the error is still showing up:if ( ! get_the_ID() ) return;Admin
Try adding this to the theme’s Custom CSS option:
.header-widget-area .widget_text {
background: none;
}
.header-widget-area .text_widget {
margin: 0;
}
.entry-content .mgraphene-dynamic-widget {
margin-left: -10px;
overflow: visible.
}Admin
Add this to your child theme’s
style.cssfile:.header-img {
display: none;
}Admin
Add this to the theme’s Custom CSS option:
#header-menu > li > a > .dojodigital_toggle_title {
font-size: 18px;
}Admin
Insert this into your child theme’s
functions.phpfile:function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Powered by %1$s and the %2$s.' => '%2$s',
);
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 );Admin
Child theme. See this topic:
https://forum.graphene-theme.com/graphene-support/translating-view-page-%C2%BB
Admin
Quote:I am wondering if I might have deleted the code for allowing a comment box in the Editor when I was first setting up my site and trying to get rid of the comment box on the home page (I now know that this is a BIG no no!!). Is there any way to find the deleted code and add this code back in? my site is http://www.moash.org if that helps. I am trying to create a few pages that allow comments, as well as try to start a blog that will allow comments.Did you mean you deleted code from WordPress itself? If yes then just reinstall WordPress again.
Admin
Which page exactly on that site? There’s ads in the homepage and also in individual posts.
Admin
In reply to: How to send automatic notification to respond to users who make comments
June 26, 2013 at 2:40 am #38868Then you’ll have to write the custom codes yourself. Not much different than using a plugin.
Admin
Basically, you can do this using many of the Lightbox-type scripts. You will need to write custom codes implement those scripts to do what you want.
