Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Is this happening only for one user or for all users?
Can you please check Front End PM PRO > Settings > Security and see if your role has permission to send message to that role user?Shamim HasanKeymasterYou can go to Front End PM PRO > Settings > Recipient and uncheck “Can users add themself to group.”. So you can assign group members yourself and students can send message to that group only. If teacher also a member of that group, he will also receive that message.
But if you want one-to-one message (student can send message to his teacher privately), also teacher can only access to his students that need to be custom coded.
Shamim HasanKeymasterare your child theme active?
did you added this code after?>
March 31, 2018 at 1:00 am in reply to: Notification of attachment without including attachment #12891Shamim HasanKeymasterPlease contact https://www.shamimsplugins.com/hire/ to get a quote.
Shamim HasanKeymasterI respect all of my customers and try to support in all cases. During purchase you have agreed to our Terms and Conditions where it is clearly written what is covered by the support. After that also i write code most of the time for customers. But that has some limitation.
As you are overriding templates in your child theme, you can easily add h2 tags in those templates. Eg. in directory.php add
<h2>Member Directory</h2>
just after ?> in line 16March 30, 2018 at 11:30 pm in reply to: Notification of attachment without including attachment #12875Shamim HasanKeymasterThis require some more code.
I am sorry, writing custom code does not cover by our support policy.
You can hire any developer or us to write custom code for you to achieve this functionality.Shamim HasanKeymasterWhich version you are using? Some of the string i do not find. Eg. “Message Box”, “Announcements” etc which you want in h2 tag.
Most string change you will find in templates, So as you are overriding templates in your child theme, you can simply change there.
Sample code:
Add following code in your child theme’s functions.php. This will change message title placeholderadd_filter( 'fep_form_fields', function( $fields ){ $fields['message_title']['placeholder'] = 'ENter a subject here'; return $fields; });
And i charge 50$ per hour.
Shamim HasanKeymasterIt depends on your website speed, this code has nothing to do with that. It only submit your form without click.
March 30, 2018 at 2:59 pm in reply to: Notification of attachment without including attachment #12860Shamim HasanKeymasterYou can create your own tag to send attachment status with email. Instruction in https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/add-own-email-tag/
Shamim HasanKeymasterAccording to our support policy, we do not provide support which require any custom code. after that also i try to assist writing custom code. But that is limited to 1-2 times per customer. Your list is very long. i can write 1-2 from your list. You can hire any developer or me for all of your changes.
Shamim HasanKeymasterNot possible.
Shamim HasanKeymasterAll plugins are based on this hooks.
Let me know what you are trying to achieve, i will try to give you code for that.Shamim HasanKeymasterfor messages, add following code in your theme’s (child theme’s if any) functions.php
add_action( 'fep_display_before_messagebox', function(){ ?><script type="text/javascript"> jQuery(document).ready(function($){ var delay = (function(){ var timer = 0; return function(callback, ms){ clearTimeout (timer); timer = setTimeout(callback, ms); }; })(); $('.fep-messagebox-search-form-field').keyup(function() { delay(function(){ $('#fep-messagebox-search-form').submit(); }, 1000 ); }); }); </script><?php });
Shamim HasanKeymasterYou can use hook ( action and filter ) to change any other function.
Shamim HasanKeymasterIn child theme only /templates folder can be modified.
To modify CSS, just add modified CSS in your child theme’s style.css file. OR add your modified CSS in Front End PM PRO > Settings > General > Custom CSS -
AuthorPosts