Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'register_post_type_args', function( $args, $post_type ){ if( 'fep_group' == $post_type ){ $args['capability_type'] = 'manage_options'; //Change this as you need } return $args; }, 10, 2);
Let me know
Shamim HasanKeymaster1. You can use
register_post_type_args
hook to change which capability we need to create groups. (If you need more instruction let me know)
2. You can follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/only-admin/ for admin setup. If only one admin is set then that will not show as as choice. Message sent to admin will go directly to that admin.
3. I could not reproduce the issue where if we have 2 admins, one is hidden. Can you please re-test this?Shamim HasanKeymasterIt is always better to use a child theme for modification.
Shamim HasanKeymasterYou mean notification in website? Which browser they using?
Shamim HasanKeymasterI tried your contact form and it seems it is working.
Can you please let me know what error you are getting?Shamim HasanKeymasterPlease add only https://www.shamimsplugins.com/support/topic/who-has-read-the-announcement/#post-42836 (remove other code)
Shamim HasanKeymasterCan you please add the default code in https://www.shamimsplugins.com/docs/front-end-pm/customization/send-welcome-message-user-register/ and see if it working? Then change to your code.
Shamim HasanKeymasterShamim HasanKeymasterPlease go to Dashboard > Front End PM PRO > Settings > General and correct “Front End PM Page”
Shamim HasanKeymasterPlease go to Dahoboard > Settings > Discussion and uncheck “Show Avatars”
Shamim HasanKeymasterThank you.
It seems it is coming from Elementor or Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue plugin.
As i do not have that much access to your website, i cannot pinpoint the location. So you can search there.This captcha is not coming from this plugin.
Shamim HasanKeymaster$time is GMT time. You need to convert it to your local time.
Shamim HasanKeymasterCan you delete data from db? If yes, you can delete
anr_admin_options
from options table.
Please note that after uninstall this plugin does not have any capability to show badge in your website. May be That is comming from somewhere else.
If you can share your website url i can try to give you an idea from where that badge is coming from.Shamim HasanKeymasterYes possible. Please use following code
add_action( 'init', function(){ if( fep_is_user_admin() ){ add_action( 'fep_display_after_announcement', array( Fep_Read_Receipt::init(), 'display_read_receipt' ), 99 ); } });
Shamim HasanKeymasterIs it only for this code or all other places as well?
Is your timezone setup correct in settings page? -
AuthorPosts