Forum Replies Created

Viewing 1 replies (of 1 total)
  • Do NOT…I REPEAT, DO NOT try this solution.
    I tried this solution given by Webdorado and my whole site is now down!!!!
    Did not work for me

    Here is the solution we came up with, we are publishing it, in case any of you is interested:

    1. Go to your Plugins section of the WordPress admin panel of your website.
    2. Find Form Maker 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(‘Form’, ‘fm_shortcode’);

    function fm_shortcode($attrs) {
    $new_shortcode = ‘[Form’;
    foreach ($attrs as $key=>$value) {
    $new_shortcode .= ‘ ‘ . $key . ‘=”‘ . $value . ‘”‘;
    }
    $new_shortcode .= ‘]’;
    return $new_shortcode;
    }
    Also, this solution will permanently fix the issue, regardless of any frontend/backend language your WordPress uses.
    Thank you.

Viewing 1 replies (of 1 total)