Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Yes, it will work.
Shamim HasanKeymasterPlease see list of forms it is supported by default https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
For other forms you can follow instruction mentioned in that link if possible, or contact that form author. You can show them that link so that they know how to implement.
Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/troubleshoot-2/license-keys-not-activating-2/
Let me know.
To share any private information you can send using https://www.shamimsplugins.com/contact-us/
Shamim HasanKeymasterYou can uncheck bleeding edge update option if your website is on production.
Shamim HasanKeymasterTo implement in a custom form please see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-custom-form/
Shamim HasanKeymasterPlease got to Front End PM PRO > Settings > Emails > Email Piping/POP3
and set “Enable” as “None”. This will remove message key from email subject.July 7, 2019 at 11:31 pm in reply to: How to get the total number of messages received by the current user. #26619Shamim HasanKeymasteruse
fep_get_user_message_count( 'total' )
Shamim HasanKeymaster1. Are other emails (eg. registration email) is being sent?
2. Both message and announcement emails are not being sent?
3. Please check Front End PM PRO > Settings > Licenses > Bleeding edge Update Then update to latest beta version. Then test and let me know.Shamim HasanKeymasterShamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_current_user_can', function( $can, $cap, $id ){ if ( 'add_announcement' != $cap || ! is_user_logged_in() || fep_is_user_blocked() ) { return $can; } if ( array_intersect( [ 'administrator', 'editor', 'author' ], wp_get_current_user()->roles ) ) { return true; } return false; }, 10, 3);
July 3, 2019 at 9:46 pm in reply to: Button fep-message-toggle-all css gone when sidebar from view message is hidden #26482Shamim HasanKeymasterAdd following code in Front End PM PRO > Settings > Appearance > Custom CSS
#fep-content-single-sidebar { display: none; }
Shamim HasanKeymasterThat value is readonly not the full field.
A new hook is added in https://github.com/shamim2883/front-end-pm/commit/dc41347194c1767d83526ee16d3b1fc8c09dba8a#diff-78cd5aa3783a74555c9938a2a81d01c6R328 but not yet merged with latest version. Next version you will get it merged and we can use that hook to make full field readonly.Shamim HasanKeymasterPlease use this code
add_filter( 'fep_filter_user_name', function( $name, $id ){ if ( $name && function_exists( 'um_fetch_user' ) && fep_get_the_id() ) { um_fetch_user( $id ); $name = '<a href="' . um_user_profile_url() . '">' . $name . '</a>'; } return $name; }, 10, 2);
Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_pro_filter_pre_populate', function( $pre_populate ){ if ( $pre_populate && is_array( $pre_populate ) ) { foreach ( $pre_populate as &$value ) { $value['readonly'] = true; } } return $pre_populate; });
Shamim HasanKeymasterYou can check if it is view message page first.
So your code lineif( function_exists( 'um_fetch_user' ) ){
will beif( function_exists( 'um_fetch_user' ) && isset( $_GET['fepaction'] ) && 'viewmessage' === $_GET['fepaction'] ){
Let me know.
-
AuthorPosts