serge rauber
Forum Replies Created
-
Hi,
Same problem. Did you find what feature blocks the editor?
Thank you, the issue is solved
Serge
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] lost css widget-title wth the last updateHello
Same problem. I have fixed it by removing
$args = array_map('sanitize_text_field', $args);
in widgets/wysija_nl.php line 240sanitize_text_fieldis not the good function to sanitizebefore_widget,before_title…Forum: Plugins
In reply to: [Analyticator] Localization / TranslationSorry it works the same without, don’t do that.
Forum: Plugins
In reply to: [Analyticator] Localization / Translationbut it doesn’t translate for last 30 days, why ???
Forum: Plugins
In reply to: [Analyticator] Localization / TranslationJust load the localization file in ajaxWidget function (line 235)
# Load the localization information $plugin_dir = basename(dirname(__FILE__)); load_plugin_textdomain('google-analyticator', 'wp-content/plugins/' . $plugin_dir . '/localizations', $plugin_dir . '/localizations');`
Forum: Plugins
In reply to: [Polylang] Static frontpage "?" url parameter URL language informationHi Chouby
I’ve the same problem with page preview. I find this topic on your code (core.php line 263)
page preview are called like this : mysites.com/?page_id=89&preview=true
there is no $_GET[‘p’]I’ve changed this part of code and it’s working
if (isset($_GET['preview']) && isset($_GET['p']) && $lg = $this->get_post_language($_GET['p']))
$this->curlang = $lg ? $lg : $this->get_language($this->options['default_lang']);
elseif (isset($_GET['preview']) && isset($_GET['page_id']) && $lg = $this->get_post_language($_GET['page_id']))
$this->curlang = $lg ? $lg : $this->get_language($this->options['default_lang']);
else
$this->home_requested();
Yep same problem.
Arne, do you have the time to update your plugin?Forum: Alpha/Beta/RC
In reply to: WP_Query and custom taxonomiesI’m looking for the same result. Is there someone who find a solution?