Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
May 3, 2021 at 11:57 pm in reply to: 2 Different Pages, Hide Announcement Roles, User Notifications in the Menu #43050Shamim HasanKeymaster
1. You can add following code to set 2 urls depending on the user
add_filter( 'fep_query_url_without_esc_filter', function( $url, $args ){ //Check here user and return url accordingly return add_query_arg( $args, 'https://example.com'); }, 10, 2);
Go to Front End PM PRO > Settings > Appearance > Load CSS file and set as “Always”
2. Announcements are sent according to roles. You can check to which roles you want to send announcements
3. follow https://www.shamimsplugins.com/docs/front-end-pm/getting-started/show-unread-message-count-in-menu/April 29, 2021 at 10:47 am in reply to: Google Captcha V2 I’m not a Robot, V2 and V3 not working with Paypal Checkout #43024Shamim HasanKeymasterSorry for the trouble.
As it seems it is not compatible with your setup, we refunded. It automatically cancelled your subscription and license.April 23, 2021 at 10:58 am in reply to: WordPress 5.7.1 incompatibility and how to fully uninstall Captcha Pro #43007Shamim HasanKeymasterThank you for letting me know. I am still trying to figure out the conflict with WP version 5.7.1
After uninstall this plugin does not have any capability to create any issue. If you get that error message after this plugin uninstalled, That means that error is coming from somewhere else. You can give me the the error page link and i can try to find out where that error is coming from.Shamim HasanKeymasterYes
Shamim HasanKeymasterApril 20, 2021 at 11:58 pm in reply to: Captcha Not Working on WooCommerce Invoice Payment Login Page #42984Shamim HasanKeymasterIt seems that you will need to add
[anr-captcha]
above the login button. That way captcha response will be sent to the server for checking.Shamim HasanKeymasterCan 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.
-
AuthorPosts