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: How to remove Adsense ads 2 and 3, leave only the 1st one working
September 1, 2013 at 4:20 am #40181This topic might help point you in the right direction:
https://forum.graphene-theme.com/graphene-support/an-adsense-qestion
Admin
We’ll add this in the next update.
Admin
Looks like the category view is showing the images just fine:
http://antiagingscore.com/category/anti-aging-guide
Perhaps the posts for the “Diet” category really have no image added to them?
Admin
In reply to: URGENT: Please HELP: SLIDER: How to change the excerpt's background color?
August 31, 2013 at 8:59 am #40144.slider_post_entry {
background: #000000;
}Admin
You can use the
graphene_slider_argsfilter hook to modify the final arguments for getting the posts for the slider:function my_graphene_slider_args( $args ){
$args['tax_query'] = array(
array(
'taxonomy' => 'my_tax',
'field' => 'id'
'terms' => 9999
)
);
if ( isset( $args['category__in'] ) ) unset( $args['category__in'] );
return $args;
}
add_filter( 'graphene_slider_args', 'my_graphene_slider_args' );You might need to tweak the argument array further, depending on your slider settings. Use
disect_it( $args );to print out what’s contained in the argument array.WP Query documentation: http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
Admin
Can you provide more details on what exactly were you trying to change, what code you added and where, as well as the URL to the concerned pages?
Admin
Can you list the plugins here?
Admin
Quote:You said it does not replace the theme’s comments php file. Does this mean that I can only add additional code but not replace what’s already in the theme’s file?That is correct.
Quote:I already have a child theme for the desktop version of Graphene. If I create a full fledged child theme for GM Neo and use “Any mobile theme switcher” plugin would I still be able to activate my Graphene child theme?Yes. You can only have one active theme at any given time, so that would be your Graphene child theme. In Any Mobile Theme Switcher, you’ll simply select the GM Neo child theme as the theme to switch to when it detects mobile devices. In other words, you’ll never need to activate the GM Neo child theme, and it won’t affect your Graphene child theme.
Admin
Are you using the “Plugins Control” option in GM Neo Options > Advanced > Plugins Control?
Admin
You have this code on your pages which removes the comment entry box:
agnes.entry-footer .more-link,
.post-nav p,
.comment-header p {
display: none;
}
