Dear all,
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 Contact 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('wd_contact_form', 'contact_fm_shortcode');
function contact_fm_shortcode($attrs) {
$new_shortcode = '[wd_contact_form';
foreach ($attrs as $key=>$value) {
$new_shortcode .= ' ' . $key . '="' . $value . '"';
}
$new_shortcode .= ']';
return $new_shortcode;
}
Thank you.