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

    (@gwin)

    Hi,
    yes, you can do that by adding the code below in your theme functions.php file

    
    add_action( "wp", function() {
        remove_all_actions( "adverts_tpl_single_bottom" );
        add_action( "adverts_tpl_single_bottom", "my_custom_contact" );
    } );
    function my_custom_contact( $post_id ) {
        echo do_shortcode( sprintf( "[some_shortcode post_id='%d']", $post_id ) );
    }
    

    Just replace sprintf( "[some_shortcode post_id='%d']", $post_id ) with your own shortcode.

    Thread Starter cooper86

    (@cooper86)

    it works fine.

    thank u again

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Replace Contactform’ is closed to new replies.