badge badge An average of 4.7 stars for ratings on wp.org! Download free version

PHP Actions

If you need a new kind of action or filter, just send us a message and we’ll do our best to implement it.

contact_list_before_contact_card

This action is fired before the contact card.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_before_contact_card', 'my_function' );

contact_list_after_contact_card

This action is fired after the contact card.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_after_contact_card', 'my_function' );

contact_list_send_message_modal_content_start

This action is fired before the content starts on the send message modal popup.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_send_message_modal_content_start', 'my_function' );

contact_list_send_message_modal_content_end

This action is fired after the content ends on the send message modal popup.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_send_message_modal_content_end', 'my_function' );

contact_list_send_message_modal_after_title

This action is fired after the title on the send message modal popup.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_send_message_modal_after_title', 'my_function' );

contact_list_send_message_modal_before_send_button

This action is fired before the send mutton on the send message modal popup.

function my_function() {
  echo '<p>Testing</p>';
}

add_action( 'contact_list_send_message_modal_before_send_button', 'my_function' );