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
Use a child theme, and just create a custom page template in your child theme. Say you name it
template-custom.php, and then add this into that file:<?php
/**
* Template Name: Blank template
*/
the_post(); the_content();
?>This part:
/**
* Template Name: Blank template
*/is necessary so that WordPress recognises it as a custom template file.
Admin
You can change the hover and active state colour via Graphene Options > Colours. To remove the surrounding box, just set its colour to the same colour as the menu background.
Admin
Which social sharing button are you referring to. The one in the top bar or under each post?
Admin
You can leave that code as is, as it’s inserted by WordPress for inserting image with caption.
Admin
What’s the URL to the site?
Admin
Quote:There are many widgets (like language selectors, social sharing features…) which I use in the desktop versionand can use it twice for the mobile version. It is a WP problem ..but will be nice pick a brain, it is an important issue.
Did you mean to say that you can’t use some of the widgets twice?
Quote:The only thing would like to remove is the search option…is there any setting?Not yet, but we’ll add this in the next theme update.
Quote:… and having the home link in the header.The header is already linked to the homepage. Is this not so on your site?
Admin
Hi yavore,
Quote:Decided to try your Mobile version for new development and would like to ask how to manage custom menus..as normally I use various languages..Using Custom Menus in Graphene Mobile Neo is similar with Custom Menus in any other theme. You can create new menus and assign it to the theme’s location via WP Admin > Appearance > Menus.
Quote:also didnt manage to find any general option to disable replies in pages, as you promote.It’s in WP Admin > Appearance > GM Neo Options > General > Comments Options.
Admin
In reply to: Cant move facebook plugin with changing margin numbers using CSS?
May 15, 2013 at 11:44 am #38216Add this code to your child theme’s functions.php file:
/**
* Add custom classes for easier styling
*/
function my_body_class( $classes ) {
if ( is_singular() && ! have_comments() ) $classes[] = 'nocomment';
return $classes;
}
add_filter( 'body_class', 'my_body_class' );Admin
In reply to: Cant Change Home page blue SEO title that appears in Google?
May 15, 2013 at 2:17 am #38243Nobody controls what ultimately appears on the Google search result, except Google. I’m sure they cache the search results they return, so whenever you change something it’s unlikely that the change will appear immediately in search results.
Admin
In reply to: Cant move facebook plugin with changing margin numbers using CSS?
May 15, 2013 at 2:12 am #38214If you have a child theme, you can add a function into the
functions.phpfile so that it adds anocommentsclass to the<body>element of posts/pages that don’t have comments yet. Then you can use that class to write CSS codes that will only be applied to posts/pages that have that class.
