daslicht
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Programmatically set post language and translationswhere do you found : pll_save_post ?
I don’t see it in the documentation?Forum: Plugins
In reply to: [Bogo] Translating Categories ?Thank you !
Forum: Plugins
In reply to: [Qtranslate Slug] Creating Categories not working reliableI also noticed that error in the browser console:
<b>Notice</b>: Undefined variable: termname in <b>/wp-content/plugins/qtranslate-slug/includes/class-qtranslate-slug.php</b> on line <b>2387</b> if (ins != null) i.value = ins.value; <b>Notice</b>: Undefined variable: termname in <b>/wp-content/plugins/qtranslate-slug/includes/class-qtranslate-slug.php</b> on line <b>2387</b> if (ins != null) i.value = ins.value; if (ins != null) ins.style.display='none'; // ]]>
I inspected the code, $termname is never initialized or declared in:
private function qts_insert_term_input($id,$name, $language,$action)
Since you are calling this function like this:
2336: echo $this->qts_insert_term_input('tag-name', __('Name','qts'), $termname, $language,"new");
I assume that
private function qts_insert_term_input($id,$name, $language,$action)
should be :
private function qts_insert_term_input($id,$termname, $language,$action)
and change all upcoming $name to $termname as well
hope that helps somehow
[EDIT]
just tried it, I that doesn’t seam to work :/Forum: Plugins
In reply to: [Qtranslate Slug] Not working withthe WordPress 4.3.1Yeah ! ??
Forum: Plugins
In reply to: [Qtranslate Slug] Not working withthe WordPress 4.3.1Hey, Pedro… THNK YOU VERY MUCH ! for Qtranslate Slug.
It works like a charm here!Forum: Plugins
In reply to: [Qtranslate Slug] Not working withthe WordPress 4.3.1Now only the pull request needs to be accepted.
Without modifying the Plugin code it wont work with WP 4.3.1 du to a deprecated function:https://github.com/adnanoner/qtranslate-slug/commit/0e66b5f8eff3bab6a5a9f565c143e1133ce928d7
Forum: Plugins
In reply to: [Qtranslate Slug] Not working withthe WordPress 4.3.1Thank you very much ! Thats it !
Forum: Plugins
In reply to: [qTranslate X] Permalink SettingsI deactivated anything, and created new pages , now it is working !
Sounds great ??
Forum: Plugins
In reply to: [Fast Secure Contact Form] recaptcha support?yeah
Forum: Plugins
In reply to: [Ninja Forms - The Contact Form Builder That Grows With You] Alot of errorsForum: Plugins
In reply to: [WP-reCAPTCHA] Fatal error when trying to activate the pluginWhen I try to add the keys I get :
Strict Standards: Redefining already defined constructor for class ReCAPTCHAPlugin in /Applications/AMPPS/www/wordpress/wp-content/plugins/wp-recaptcha/recaptcha.php on line 41 Strict Standards: Redefining already defined constructor for class WPPlugin in /Applications/AMPPS/www/wordpress/wp-content/plugins/wp-recaptcha/wp-plugin.php on line 27 Warning: Cannot modify header information - headers already sent by (output started at /Applications/AMPPS/www/wordpress/wp-content/plugins/wp-recaptcha/recaptcha.php:41) in /Applications/AMPPS/www/wordpress/wp-includes/pluggable.php on line 1207
Forum: Plugins
In reply to: [WP-reCAPTCHA] Fatal error when trying to activate the pluginI get :
Strict Standards: Redefining already defined constructor for class ReCAPTCHAPlugin in /Applications/AMPPS/www/wordpress/wp-content/plugins/wp-recaptcha/recaptcha.php on line 41 Strict Standards: Redefining already defined constructor for class WPPlugin in /Applications/AMPPS/www/wordpress/wp-content/plugins/wp-recaptcha/wp-plugin.php on line 27
This seams to be the fix:
//$this->WP_Widget('contactformgenerator_widget', 'Contact Form Generator', $widget_ops, $control_ops); // Create the widget WP_Widget::__construct('contactformgenerator_widget', 'Contact Form Generator', $widget_ops, $control_ops); // Create the widget
/wordpress/wp-content/plugins/contact-form-generator/includes/contactformgenerator_widget.php: 8: class contactformgenerator_widget extends WP_Widget { 17: $this->WP_Widget('contactformgenerator_widget', 'Contact Form Generator', $widget_ops, $control_ops); // Create the widget