Title: Shortcode problem
Last modified: August 22, 2016

---

# Shortcode problem

 *  [dinosaure49](https://wordpress.org/support/users/dinosaure49/)
 * (@dinosaure49)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/)
 * hi,
 * this: [Contact_Form_Builder id=”3″] is my Shortcode of my Contact Form Builder:
 * I copy and paste this code ([Contact_Form_Builder id=”3″]) on my dedicated page
 * this is what appear on the page.
 * [Contact_Form_Builder id= »3″]
 * you can see that ( ” ) is change by ( » ) . So my contact form doesn’t work.
 * could you help me please
 * [https://wordpress.org/plugins/contact-form-builder/](https://wordpress.org/plugins/contact-form-builder/)

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

 *  Plugin Contributor [webdorado](https://wordpress.org/support/users/webdorado/)
 * (@webdorado)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/#post-5510566)
 * Dear dinosaure49,
 * The issues with the Contact Form Builder are related to the latest update of 
   WordPress to 4.0.1.
 * Please update the plugin to the latest version. The latest version can be found
   on WordPress.org if that’s a free version or your account (My Products) section
   on web-dorado.com, if that’s a Pro (paid) version.
 * Please note that after the update you will have to regenerate the shortcode. 
   That is to delete and insert the shortcode from the Editor again.
 * Please note: if you have a customized version, please contact us to [info@web-dorado.com](https://wordpress.org/support/topic/shortcode-problem-16/info@web-dorado.com?output_format=md),
   so that we will make the changes within the product code, so that that customization
   will not be lost.
 * Thank you.
 *  Thread Starter [dinosaure49](https://wordpress.org/support/users/dinosaure49/)
 * (@dinosaure49)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/#post-5510569)
 * hi,
 * I already have the Version 1.0.14.
 * how can i do?
 * thanks
 *  [jamessnell](https://wordpress.org/support/users/jamessnell/)
 * (@jamessnell)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/#post-5510623)
 * I’ve got version 2.6.3 on WordPress 4.0.1 and my short codes for these forms 
   are not working. 🙁
 *  Plugin Contributor [webdorado](https://wordpress.org/support/users/webdorado/)
 * (@webdorado)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/#post-5510631)
 * Dear all,
 * Here is the solution, which you can implement yourself, if you don’t have any
   trouble with doing that:
 * 1. Go to your Plugins section of the WordPress admin panel of your website.
    
   2. Find Contact Form Builder and click Edit under the plugin title, you will 
   access the plugin editor. 3. Please scroll down to the end of the code and add
   the following code before the main PHP?> brackets:
 *     ```
       add_shortcode('Contact_Form_Builder', 'cfm_shortcode');
   
       function cfm_shortcode($attrs) {
       $new_shortcode = '[Contact_Form_Builder';
       foreach ($attrs as $key=>$value) {
       $new_shortcode .= ' ' . $key . '="' . $value . '"';
       }
       $new_shortcode .= ']';
       return $new_shortcode;
       }
       ```
   
 * Thank you.

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

The topic ‘Shortcode problem’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/contact-form-builder.svg)
 * [WDContactFormBuilder](https://wordpress.org/plugins/contact-form-builder/)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-builder/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-builder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-builder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-builder/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [webdorado](https://wordpress.org/support/users/webdorado/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/shortcode-problem-16/#post-5510631)
 * Status: not resolved