mansurahamed
Forum Replies Created
-
Forum: Plugins
In reply to: [Private User Notes] Restrict to text only inputHi,
There is filter to do that. Add following code in your child theme’s functions.php file which should do it
add_filter('private_user_notes_editor_settings', 'simplify_user_notes_editor');function simplify_user_notes_editor($settings) { // Set editor to plain text mode $settings['tinymce'] = false;$settings['quicktags'] = false;$settings['media_buttons'] = false;$settings['teeny'] = true;return $settings;}<?php function return_my_username_dropdown(){ $args = array( 'role' => 'um_operatore', 'orderby' => 'user_nicename', 'order' => 'ASC' ); $users = get_users( $args ); $usernames = array(); foreach ( $users as $user ) { $usernames[] = $user->display_name; } return $usernames; } ?>You can then use this function name “return_my_username_dropdown” as your callback function.
Hi @grezes71,
You did the right thing by making registration page private or taking out the registration form shortcode. Ultimate Member core pages ( such as register, login) page restriction will not work for security reason.
Thanks.
Hi @french150,
You can use our choice callback function feature to write a custom function to populate the multiselect fields with user infomations. Please see our docs on this here https://docs.ultimatemember.com/article/1539-choices-callback-feature-in-um-2-1
Forum: Plugins
In reply to: [Auto Meta Keywords] Sort of works but not as expectedHi @rvjventures update to version 1.0.3, a fix is added to make the plugin compatible with visual builders too.
Thanks.
@diegosn79 , @webfantastic , Thank you guys. I will update the plugin this week which will have much improved woocommerce integration which will fix these issues.
Forum: Plugins
In reply to: [Private User Notes] Displaying notes related to a specific post onlyHi @sergeyf1 ,
Thanks for the great suggestion. The note is based on user, not posts. One user can get only one private note page. Hope it’s clear.
Thanks.
Hi @mynetflixtain,
It’s possible to change all the colors with CSS code. You can use the browser inspection tool to find the CSS class and apply custom color to that.
Thanks.
Forum: Plugins
In reply to: [Private User Notes] Not workingHi @mynetflixtain,
Go to your dashboard Settings->Chatbot Support AI->Enable Chatbot, and uncheck this option. Then add following code in your child theme’s functions.php to enable the bot in specific pages
add_filter('csa_enabled_posts',function(){ return '100,101,102';});Replace 100,101,102 with the page/post ID that you want to enable the chatbot only. You can use only one or multiple post/pages with comma separated like this.
Hi @zzecktel
Go to your dashboard Settings->Chatbot Support AI->Enable Chatbot, and uncheck this option. Then add following code in your child theme’s functions.php to enable the bot in specific pages
add_filter('csa_enabled_posts',function(){ return '100,101,102';});Replace 100,101,102 with the page/post ID that you want to enable the chatbot only. You can use only one or multiple post/pages with comma separated like this.
Ji @zzecktel ,
Go to your dashboard Settings->Chatbot Support AI->Enable Chatbot, and uncheck this option. Then add following code in your child theme’s functions.php to enable the bot in specific pages
add_filter('csa_enabled_posts',function(){ return '100,101,102';});Replace 100,101,102 with the page/post ID that you want to enable the chatbot only. You can use only one or multiple post/pages with comma separated like this.
Hi @simonattilahun ,
Yes, The chatbot should work as ChatGPT and recognize other language without issue. Does it not work for your language?