Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Most probably it will be code as it is one time change feature which will not be changed frequently. Also already there are many settings options, too many options confuse users.
March 19, 2021 at 10:34 am in reply to: Is there a way to redirect non-logged in users to a different URL? #42752Shamim HasanKeymasterWe use default wp function to determine login url. You can follow https://developer.wordpress.org/reference/hooks/login_url/#comment-4478 to change that url.
Shamim HasanKeymasterThank you for your suggestion.
I will add a filter there so that we can use that filter to change this.Shamim HasanKeymasterif will be
announcements
instead of announcementShamim HasanKeymasterBy default “New Announcement” button is shown to admin only. If you want to remove from them also please go to Front End PM PRO > Settings > Security and unchecked “Can permitted users add Announcement from front end?”
Shamim HasanKeymasterCurrently we can send but that needs to edit main plugin code. If you are comfortable to edit php code you can open class-fep-email-beautify.php and remove following code
if( $mgs->mgs_author == $y ){ unset( $queue[$k][$x] ); continue; }
Shamim HasanKeymasterDid you set Front End PM Page in settings page of this plugin?
Can you send me a test url which you are getting?March 9, 2021 at 3:41 pm in reply to: V2 Invisible works for WooCommerce Checkout but not login form #42687Shamim HasanKeymasterDone
Shamim HasanKeymasterYou can add a default value for subject and hide using css.
Add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'fep_form_fields', function( $fields ){ if( isset( $fields['message_title'] ) ){ $fields['message_title']['value'] = 'Default Value for all message subject'; } return $fields; });
Then add
.fep-form-field-message_title{display:none}
in Front End PM PRO > Settings > Appearance > Custom CSSShamim HasanKeymasterYes, possible. Add your field beginning of the $columns array. you can use array_unshift
Shamim HasanKeymasterStill getting same error.
Shamim HasanKeymaster1+2: Please follow https://www.shamimsplugins.com/support/topic/change-text-and-link-when-not-logged-in/
3. Sorry, this plugin works only with registered users as this needs user id to map messages.Shamim HasanKeymasterSorry for the late reply for weekend.
I tried with admin account and working.
But i could not login using subscriber account, so i could not test that. Can you please check that you can login with subscriber account you provided me? It is showing by cookies is blocked which is not. I tried with multiple browser (Safari, chrome, firefox) and showing same error message.Shamim HasanKeymasterYou can contact me using https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterYes, pass
value
when creating form field with that meta value. -
AuthorPosts