• Resolved xjamasterx

    (@xjamasterx)


    Hi there,

    I’d like to hide the “Show Contact Information” button on the posts. How do I do that?

    Thank you.

    The page I need help with: [log in to see the link]

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

    (@gwin)

    I am not sure what do you mean, the “Show Contact Information| button is already there?

    Thread Starter xjamasterx

    (@xjamasterx)

    Right. The Show Contact Information button is there, and we would like to remove it.

    Plugin Author Greg Winiarski

    (@gwin)

    You can remove it by adding the code below in your theme functions.php file

    
    add_action( "init", "remove_contact_information", 1000 );
    function remove_contact_information() {
        remove_action('adverts_tpl_single_bottom', 'adverts_single_contact_information');
    }
    
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Show Contact Information button’ is closed to new replies.