Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,996 through 2,010 (of 2,457 total)
  • Author
    Posts
  • Shamim Hasan
    Keymaster
    in reply to: Multisite #10301
    Shamim Hasan
    Keymaster

    Thank you for contacting.
    Sorry to say that, it is a limitation of WordPress core. WordPress uses separate table for each sub-site. Right now i do not see any way other than manually changing code to achieve this.

    in reply to: increase size of text box new_message_form #10274
    Shamim Hasan
    Keymaster

    You can add .fep-form textarea {height: 200px;} in Front End PM PRO > Settings > General > Custom CSS

    in reply to: Email Piping Not Working #10260
    Shamim Hasan
    Keymaster
    in reply to: new_message_form #10241
    Shamim Hasan
    Keymaster

    You can add .fep-label{display:none;} in Front End PM PRO > Settings > General > Custom CSS

    in reply to: new_message_form #10231
    Shamim Hasan
    Keymaster

    1. You can pass heading to shortcode. So shortcode will be like [fep_shortcode_new_message_form heading="Anything"]
    2. You can add #message_title{display:none;} in Front End PM PRO > Settings > General > Custom CSS
    3. To change text add following code in your theme’s (child theme’s if any) functions.php

    
    add_filter( 'fep_form_submit_button', function( $button, $where){
    if( shortcode-newmessage == $where ){
        $button = '<button type="submit" class="fep-button" name="fep_action" value="'. esc_attr( $where ) .'">YOUR TEXT HERE</button>';
    }
    return $button;
    }, 10, 2);
    
    in reply to: Email Piping Not Working #10228
    Shamim Hasan
    Keymaster

    Can you give me access to your website and cpanel so that i can try?

    in reply to: Email Piping Not Working #10202
    Shamim Hasan
    Keymaster

    May be i did not understand you correctly.
    Suppose user A send a message to user B in your website. B receive that message in website and in email. B reply that email. That email goes to piping email and also inserted as reply of that message and send email to user A.

    In this which is not happening?

    in reply to: Changing CSS #10176
    Shamim Hasan
    Keymaster

    You can add your modified css in Dashboard > Front End PM PRO > Settings > General > Custom CSS

    in reply to: Error message to user #10139
    Shamim Hasan
    Keymaster

    No need additional css or jquery to to this, this can be done without any coding.

    1. Go to Front End PM PRO > Settings > Recipient > Only Admins and set your admins
    2. Go to Front End PM PRO > Settings > Security > Role to Role Block and block your customers for New Message (From Role->Customers, To role->All roles, Block For->New Message)

    Let me know.

    in reply to: Users to send emails to admin only #10109
    Shamim Hasan
    Keymaster

    You are welcome.
    Let me know anytime if you find any difficulty using this plugin.

    Shamim Hasan
    Keymaster

    You can return empty array, that will short circuit the function and halt/abort creation of message.

    Shamim Hasan
    Keymaster

    You can add following code in your theme’s (child theme’s if any) functions.php

    add_filter('fep_filter_message_before_send', function( $message ){
        $your_extra_user_ids = array( 1,2,3 );
    
        //Only for parent message
        if( empty($message['post_parent'] ) ){
            if( ! is_array( $message['message_to_id'] ) ){
                $message['message_to_id'] = array( $message['message_to_id'] );
            }
            $message['message_to_id'] = array_merge( $message['message_to_id'], $your_extra_user_ids );
        }
        return $message;
    });
    
    in reply to: Show persons name rather than user name #10028
    Shamim Hasan
    Keymaster

    There are 3 types of name in wordpress, username, nicename and display name. Display name is to display the name and this plugin show that.
    Please go to user edit profile page in back-end to see the difference of the names of a user.

    Shamim Hasan
    Keymaster

    This shortcode does not support multiple recipient.
    You can use fep_action_message_after_send hook to set participants to other user but may encounter some caching issue with message count. Instead You can use fep_filter_message_before_send and pass message_to_id as array of user ids. remember it already holds current recipient (may be as string), so add only other users.

Viewing 15 posts - 1,996 through 2,010 (of 2,457 total)