Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    yes, it is possible, add the code below in your theme functions.php file, it will show the contact details box to logged in users only.

    
    add_action( "init", "my_toggle_contact", 1000 );
    function my_toggle_contact() {
        if( get_current_user_id() == 0 ) {
            remove_action('adverts_tpl_single_bottom', 'adverts_single_contact_information');
            remove_action('adverts_tpl_single_bottom', 'adext_contact_form');
        }
    }
    

    Just what I was looking for too Greg. I need a login to contact message as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Contact form and phone number for logged in users only’ is closed to new replies.