Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Can you please try only following code? (remove fep_admin_cap code)
add_filter( 'register_post_type_args', function( $args, $post_type ){ if( 'fep_group' == $post_type ){ $args['show_in_menu'] = true; $args['capability_type'] = 'post'; } return $args; }, 10, 2);
Let me know. This way you do not need to give other users admin access then modify by other plugin.
Shamim HasanKeymastercan you try following code
add_filter( 'register_post_type_args', function( $args, $post_type ){ if( 'fep_group' == $post_type ){ $args['show_in_menu'] = true; } return $args; }, 10, 2);
It should show a separate menu for Groups
Shamim HasanKeymasterCan you please try following code along with above code
add_filter( 'fep_admin_cap', function( $admin_cap ){ return 'manage_options'; });
Change capability here as well. This will give that user admin capability (eg. see all messages etc), so use with caution
Let me know.April 19, 2021 at 11:21 pm in reply to: Captcha Not Working on WooCommerce Invoice Payment Login Page #42959Shamim HasanKeymasterSorry, it seems you are using multi-step checkout. This plugin does not support that.
If you want a refund please let me know.Shamim HasanKeymasterIt is a deprecated warning, So nothing to worry.
We will fix that in next version.Shamim HasanKeymasterThank you for letting me know.
As English is not my first language, i made mistake too often.
I will try to fix that.Shamim HasanKeymasterAdd 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”
-
AuthorPosts