othersphere
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact Form 7] ReCaptcha?yes, recaptcha would be great ??
Forum: Plugins
In reply to: WP-multilingual and titles on index page// Update 3 + temporal solution:
The problem is caused by the code I use in my template (shown above), though I don’t know why. As a temporal solution, this works for me:
<?php wp_list_pages('include=#;title_li='); ?>
Only it’s not terribly web-standard-friendly…
Forum: Plugins
In reply to: WP-multilingual and titles on index page// Update 2:
There has to be a problem in my theme – when I use different theme, the titles start to change again… I suppose it has something to do with the encoding of my theme because I made some changes in in :/
Hmm, any ideas?
Forum: Themes and Templates
In reply to: Translate Menu LinksIf I get it right, this may help:
Forum: Plugins
In reply to: WP-multilingual and titles on index pageI have the same problem.
It’s interesting that it started only when I changed my webhosting provider (it’s was OK before), so without any particular reason – I use the same version of WP, WP-Multilingual and everything. It’s mysterious! ??
This is what I use to show a link to a page (# is the number of a page):
<?php $args = array( 'post_type' => 'page', 'include' => #, ); $pages = get_posts($args); foreach($pages as $page) { $out .= '<a href="'.get_permalink($page->ID).'" >'.wptexturize($page->post_title).'</a>'; } echo $out; unset($out); ?>
// Update: There’s another interesting thing: I’ve just found out that the titles stopped to change even on my Localhost where I haven’t made any changes. I’ve deleted all cookies but it hasn’t helped.
Forum: Plugins
In reply to: [Plugin: WP_Multilingual] 2.1 Wp_MultilingualUpdate: the problem with autodetection and cookie seems to disappear after updatin WP from 2.6.x to 2.7.x
Forum: Plugins
In reply to: [Plugin: WP_Multilingual] 2.1 Wp_MultilingualHello,
when I tried to use autodetection + redirect, and saving it as a cookie I got this error:
Warning: unserialize() expects parameter 1 to be string, array given in /DISK3/WWW/web.com/www/wp-content/plugins/wp-multilingual/multilingual.php on line 2857
Warning: unserialize() expects parameter 1 to be string, array given in /DISK3/WWW/web.com/www/wp-content/plugins/wp-multilingual/multilingual.php on line 3005
And those two lines are now stuck up above the options and I’m unable to change any option at all.
Another thing: the title of the browser window in the wp-admin area has “name” before the name of the blog. Also, it shows “namename” before the title of the blog in the header of the admin area (looks like this).
Hope it will help. Thanks for the great plugin.
Forum: Plugins
In reply to: Counterize II issue with user roles and access to statsYes, it helps indeed. Thanks ??
Forum: Fixing WordPress
In reply to: Page links without a listjust in case anyone would find it useful:
$args = array( 'post_type' => 'page', 'include' => 1, ); $pages = get_posts($args); foreach($pages as $page) { $out .= '<a href="'.get_permalink($page->ID).'" >'.wptexturize($page->post_title).'</a>'; } echo $out; unset($out);
Forum: Fixing WordPress
In reply to: Page links without a listIt’s perfect, thank you very much