Title: Replace Contactform
Last modified: May 8, 2019

---

# Replace Contactform

 *  Resolved [cooper86](https://wordpress.org/support/users/cooper86/)
 * (@cooper86)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/replace-contactform/)
 * Hi again,
 * is ist possieble to replace the Contactform with a shortcode?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * (@gwin)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/replace-contactform/#post-11507646)
 * 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](https://wordpress.org/support/users/cooper86/)
 * (@cooper86)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/replace-contactform/#post-11508626)
 * it works fine.
 * thank u again

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Replace Contactform’ is closed to new replies.

 * ![](https://ps.w.org/wpadverts/assets/icon-256x256.png?rev=2423472)
 * [WPAdverts - Classifieds Plugin](https://wordpress.org/plugins/wpadverts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpadverts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpadverts/)
 * [Active Topics](https://wordpress.org/support/plugin/wpadverts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpadverts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpadverts/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [cooper86](https://wordpress.org/support/users/cooper86/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/replace-contactform/#post-11508626)
 * Status: resolved