Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymasterShamim HasanKeymaster
1. Do you do any database search/replace before import?
2. Is your website a multisite?
3. Can you copy justFEP_admin_options
value from old database and insert in new database. See if those options get imported?Shamim HasanKeymasterCan you please install the plugin and add your google keys, but do not check any forms in “Enabled Forms”?
Then let me know.
Also let me know if captcha is working for other forms? Eg. login, register?Shamim HasanKeymasterCan you create a test purchase and see if you are able to do so?
Can you create a staging site so that i can work on that? Working on live site is dangerous.Shamim HasanKeymaster1. Which version of captcha you are using?
2. Can you recheck your google keys are correct and your domain is set in google recaptcha admin under same keys? (important)
3. Can you send me your website url?Shamim HasanKeymasterFrom which icon? Can you please send me a screenshot?
Shamim HasanKeymasterMay be in old database there was no custom css. This plugin store its settings in wp_options table. So if that option is present it should take from there.
You can check your old database options table and see if
FEP_admin_options
option is there. You can also copy that and paste in new database.Shamim HasanKeymasterIf you want your users can send group message without joining that group you can follow https://www.shamimsplugins.com/support/topic/messaging-to-a-group/#post-27586
Let me know if that answer your question.
Shamim HasanKeymasterI may not get your question properly. If you want to hide your reply, then why you will reply in first place? May you please elaborate your question a little so that i can better answer you if my above answer is wrong?
Shamim HasanKeymasterRecipients name never shows in that page as multiple recipients issue. If i get a better idea how to show the name including multiple recipients case, i will add that in future version.
If you want now you can edit
view-message-heads.php
template following https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/change-templates/Shamim HasanKeymasterAs this plugin support multiple recipients, showing other users name is little confusing as there may have more than one receiver. If you support to send message to only one receiver then you can follow following approach.
If you want to show other users avatar add following code in your theme’s (child theme you are using one) functions.php
add_filter( 'fep_remove_own_avatar_from_messagebox', '__return_true' );
If you want to show other user name add following code in your theme’s (child theme you are using one) functions.php
add_action( 'fep_message_table_column_content_author', function(){ $participants = fep_get_participants( fep_get_the_id() ); foreach( $participants as $participant ) { if ( get_current_user_id() != $participant ) { ?><span class="fep-message-author"><?php echo fep_user_name( $participant ); ?></span><span class="fep-message-date"><?php echo fep_get_the_date( 'mgs_last_reply_time' ); ?></span><?php break; } } });
Shamim HasanKeymasterYou can follow https://www.shamimsplugins.com/docs/front-end-pm/customization/remove-minlength-message-title/
For message area limit, usemessage_content
instead ofmessage_title
Shamim HasanKeymasterI am very sorry for this bug.
Please download again this plugin and install. This bug is already solved and updated.Let me know.
Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'init', function(){ remove_action( 'woocommerce_checkout_after_order_review', array( anr_captcha_class::init(), 'wc_form_field' ) ); add_action( 'woocommerce_checkout_before_order_review', array( anr_captcha_class::init(), 'wc_form_field' ) ); });
You can also use another action hook instead of
woocommerce_checkout_before_order_review
for other locations. See other action hooks in https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/Shamim HasanKeymasterThank you for contacting.
Sorry, it is not possible. It can be shown above the payment options, But i think that is too much above. -
AuthorPosts