Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
I can check when it is active. Do you have any staging site for this website? Or can you make a test site with this same settings for testing?
Shamim HasanKeymasterCan you please share your website url?
May 22, 2021 at 2:43 am in reply to: False error message – You do not have permission to send reply to this message! #43111Shamim HasanKeymasterMay be someone from that message has blocked you.
You can add your username in the whitelist in Front End PM PRO > Settings > Security, That may bypass that check.
Let me know.Shamim HasanKeymasterYou can use
fep_add_announcement
functionShamim HasanKeymasterYou can go to Front End PM PRO > Settings > Security and check “Who can send new message” to only Administrator
Shamim HasanKeymasterIt seems you are using an old version. Can you please download latest version from account page and install?
Shamim HasanKeymaster1. May you please let me know which version of the plugin you are using?
2. Can you please let me know last 6 digits of your license key?May 3, 2021 at 11:57 pm in reply to: 2 Different Pages, Hide Announcement Roles, User Notifications in the Menu #43050Shamim HasanKeymaster1. 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
-
AuthorPosts