• 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/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor webdorado

    (@webdorado)

    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, so that we will make the changes within the product code, so that that customization will not be lost.

    Thank you.

    Thread Starter dinosaure49

    (@dinosaure49)

    hi,

    I already have the Version 1.0.14.

    how can i do?

    thanks

    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

    (@webdorado)

    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.