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
I agree. One of the better implementation and customisation of the Graphene theme around.
A few things you can do to improve things further:
1. There are too many lines at the bottom of each post, making the posts listing looks cluttered. Try removing the lines and leaving just one.
.entry-footer,
.post {
border-top: none;
}2. Clean up the paddings in the footer
#footer {
padding-top: 10px;
}
#copyright {
width: 54%;
margin-bottom: 0;
}
#developer {
width: 29%;
}Admin
1.7.1 will come after 1.7, so you will need to make the changes again when you update to 1.7.
Admin
I missed this thread and Graphene 1.7 has already been submitted to the repository. The function will be pluggable in version 1.7.1.
In the mean time, you can do something like this to achieve different column modes for different posts/pages:
function graphene_modify_column_mode(){
global $graphene_settings;
if ( is_single( 88 ) )
$graphene_settings['column_mode'] = 'two_col_left';
}
add_action( 'template_redirect', 'graphene_modify_column_mode' );Admin
In reply to: Menu not displaying correctly in IE and Firefox popup problem.
April 23, 2012 at 11:53 pm #27903There’s this code at the top of your site’s source code:
<script type="text/javascript" src="http://dl.dropbox.com/u/74575063/clickpop.js"></script>That code causes the spammy behaviour you’re describing. Try open up the theme’s
header.phpfile and see if somehow the code has been placed there near the top just before the<html ...line. If it is, delete it.If it’s not, you might wanna try disabling all your plugins and see if the problem still exists. If it does not, then you know that one of the plugins is adding that code to your site. Reactivate the plugin one by one to figure out which plugin is the culprit. Then throw it down a raging volcano. I heard the Popocatepetl volcano in Mexico is about ready to splurge red-hot lava now. Then make a noise about it.
If none of the plugins are causing the issue, try deleting the theme and installing a fresh one again from WordPress.org.
If that still doesn’t fix it, we’ll figure something out.
Admin
Admin
When you enable the “Hide allowed tags in comment form” option, the message regarding HTML tags and attributes below the comment box is not just hidden (as a CSS
display:nonewould), but the HTML codes themselves are actually removed.So if it still appears when sharing to Facebook or other social media, it’s probably that your pages before you hide the allowed tags are cached by those social media.
Admin
You would need to create a child theme first for this. See here for instructions:
Post back again when you’ve created a child theme, or if you need any help doing that.
Admin
Just remember that whenever you add restrictions like this, you’re making it difficult for legit users to use your site as well. In the end you’ll have to decide if it’s worth it.
Also, it’s not very difficult at all to circumvent the protection. I just did it with a few clicks.
Admin
That’s the default site title structure for the theme. You can modify it in Graphene Options > Display > Miscellaneous Display Options > Site title options.
Admin
Hi davideg,
You can download the Mobile Smart plugin from this link:
http://dev.khairul-syahir.com/wordpress/mobile-smart.zip
I have updated the installation instructions to reflect this change.
Let me know if you encounter any other issues.
