alex586
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Autooptimize Breaks bbPress Text EditorThanks ! Thanks ! Thanks !
I had an error with another plugin and you solved my problem ! ??
Forum: Plugins
In reply to: [Comment Reply Email Notification] Encoding errorHello guhemama
Can you, if possible tell me how to solve this problem. I think I have to change something here :
$title = html_entity_decode(get_option('blogname')) . ' - ' . __('New reply to your comment', 'cren-plugin', $body);
… But I don’t know why ??
Forum: Plugins
In reply to: [Theme My Login] [BUG] TML Profile + Avatar pluginno, no button in the source.
Forum: Plugins
In reply to: [User Menus - Nav Menu Visibility] {display_name} in linkHello danieliser,
I found a solution with wp_redirect.
Thank you ??
- This reply was modified 6 years, 6 months ago by alex586.
Forum: Plugins
In reply to: [Comment Reply Email Notification] Add a global option in user profileThank you for your reply guhemama. I understand, I’ll try a fork.
Have a nice eveningForum: Plugins
In reply to: [Comment Reply Email Notification] Encoding errorOkay, thank you.
Forum: Plugins
In reply to: [Comment Reply Email Notification] Add featured image to the mailThank you, I will see this.
Forum: Plugins
In reply to: [Comment Reply Email Notification] Add a global option in user profileHello,
I’m sorry, English isn’t my native language and I’m learning everyday.
I’m trying to explain the request in other words.
By default when I want to post a comment, I can check the checkbox “Send an email when someone replies to his comment” on every post on a blog.
It can be annoying. I opened the member area to everyone on my Blog. So only members can posts comments.
So, is it possible to add a global option on user profile to check / unchek “Send an email when someone replies to ALL comments.” Like that, members choose globally whether they want to be emailed or not.
I hope it’s more understandable
Again, thank you for your plugin and reactivity.
Forum: Plugins
In reply to: [Theme My Login] Remove password strenght meterHow can I remove also this on the “Reset Password” page ?
Thank you
Edit : Found !
function remove_password_strength_meter_from_registration() { tml_remove_form_field( 'register', 'indicator' ); tml_remove_form_field( 'register', 'indicator_hint' ); tml_remove_form_field( 'resetpass', 'indicator' ); tml_remove_form_field( 'resetpass', 'indicator_hint' ); } add_action( 'init', 'remove_password_strength_meter_from_registration' );
Forum: Plugins
In reply to: [Theme My Login] Remove password strenght meterThank you Jeff
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Lots of spam for 2 weeksHello,
I sent a ticket few days ago, problem is being analyzed.
Thank you.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Lots of spam for 2 weeks108 SPAMS over the night : https://i.imgur.com/f8WLdHD.png
Forum: Plugins
In reply to: [Contact Form 7 Database Addon - CFDB7] Export CSV ?it work with : https://www.ads-software.com/support/topic/tip-export-to-csv-with-utf-8-encoding/
Please update your addon ??
Forum: Networking WordPress
In reply to: Article in first (homepage)Forum: Fixing WordPress
In reply to: Delete Google Font ?Hello,
I tried this, but I’m not comfortable with PHP. It seems not work.function unhook_parent_style() { wp_dequeue_style( 'sparkling-fonts' ); wp_deregister_style( 'sparkling-fonts' ); } add_action( 'wp_enqueue_scripts', 'unhook_parent_style', 20 );