Forum Replies Created
-
Great, I just removed
%%page%%, without adding%%pagenumber%%. This really helps, thanks! Even if this way the number 1 appears on the first page title, that is not so nice probably. I’ll see what to do when I’ll be back from my winter holidays, next week. I’m going to play with the snow tomorrow!I had no luck with them. I opened a topic in their support forum but got no answer so far.
Never mind, I’ll live without page number in title, I’ve just removed it in plugin options.
Actually I’m using a plugin (Yoast WordPress SEO), but I tried disabling title rewriting before posting here, and the result was the same. But you are true, if I completely disable the plugin page number in title disappears, so this is plugin related. Sorry for wasting your time.
Thanks
I used a faster solution, that enables me to still use the beautiful Graphene top bar options but moving top bar to the footer. It’s just a line of javascript code and a few CSS rules.
The javascript:
jQuery('#footer').prepend(jQuery('#top-bar'));In functions.php of my child theme.
Of course users must have javascript enabled, but who cares about people disabling javascript? Search engines (and people with JS disabled) will continue to see the top bar at the top of the page, that is ok too.
Anyway you can download the translation here:
Italian translation for Graphene
A link to my site (www.antonioranesi.it) in the translators credits page would be appreciated.
I’ll keep notifications on for this topic, so anybody who has suggestions to improve the translation can comment here, or in my page linked above.
Weird, I received the forum notification for your reply, but not your email…
I’m done! Let me know how to make the files available for you.
I might also provide a download page on my site, so that people can use the new italian translation even before next upgrade of Graphene.
Ok.
I’ts 46% at the moment, when I’m done I’ll contanct you.
What’s the content of your child theme functions.php?
Before finding a working solution you can of course just delete via ftp that functions.php file from your child theme folder, and all should return as before your changes..
keep in mind that in Graphene 1.7 something is changed in the function
graphene_column_mode().two-col-leftis nowtwo_col_left(divis replaced by underscore).The function to add in your child theme could be:
function graphene_modify_column_mode(){
global $graphene_settings;
if ((is_single()||is_page())&&!(class_exists( 'bbPress' ) && is_bbpress()))
$graphene_settings['column_mode'] = 'two_col_left';
}
add_action( 'template_redirect', 'graphene_modify_column_mode' );This takes into account also the possibility to set a specific column mode for bbpress forum plugin, and sets two columns as standard template for pages too.
EDIT
I see now that you want the small column on the left, then you have to change two_col_left with two_col_right, I suppose…
Viewing 10 posts - 1 through 10 (of 16 total)
- 1
- 2
