HI – Hoping for some support. I have the ‘exclude lines with blank mail-tags from output’ ticked but I still get the following blank lines – what should I do?
…. limited number people have access to it, your tutors do not have access. The information you have given today is:
Mr Joe Bloggs
1951-03-21
ggh, cvb, ggb
456
fcg, [Workplace-Address], [Workplace-City], [Workplace-Postcode]
cvh [Department], [Section-Team]
Hi,
On my website I’m using Contact Form 7 Material Design plugin. The problem is that Material Design plugin is not being updated any more.
Also, we are going to PHP 8 and the whole form on the website is broken.
So i’m looking for a similar plugin as CF7 Material Design. Can you guys please recommend some?
Kind regards.
We have a warning on ALL pages about MDCF7 from a couple of weeks. No recent modification has been applied on our site and we had no issue before.
Warning: Trying to access array offset on value of type bool in /…/web/wp-content/plugins/material-design-for-contact-form-7-premium/public/cf7-material-design-custom-style.php on line 78
We have a pro version 2.6.5
Thanks to help to solve this issue.
]]>Hi,
I have created a multistep form with several steps, using checkboxes, [group group], … and I would like to understand how to ignore in the email sent at the end of the form the fields that have not been selected by the person who made the form.
For example, if the customer selects box 1 and answers the questions, but box 2 has not been checked, I would like that all the elements and sub-elements of this box 2 are not displayed on the confirmation sent by email because it is unsightly and there are many unnecessary lines on this confirmation. Do you have a solution to this? Thanks
The plugin was working fine until I noticed it was getting notifications in the email when someone submits a form. I’ve checked and it’s not in spam. I have also reviewed all the emails and there is nothing wrong.
Why am I not getting notifications in the email?
Screenshot: https://paste.pics/4b40d9b564e0bc903f9753a0eaccd7a7
]]>Hello, I have the premium version and I just saw this unacceptable answer. If you have made the patch in the premium version it means that you probably know how to make it for the free version. I find that the option you have chosen to leave your users with a security problem that you recognize is taking a major risk to the sites of people who are using your plugin in confidence.You have broken this contract of confidence in all conscience and knowledge. Offering a paid fix (upgrading to premium version is paid) goes against all the ethical principles I defend day after day for many years. It would have been honest to patch the repo version, then stop it as a free version.
I will stop using your product immediately as soon as I find an alternative (it will be quick).
I don’t salute you
Hi.
It may be that the premium version of material design prevents displaying different colors depending on whether it was sent correctly (green) or there was an error (red)
When it is sent correctly it puts it in red and people write to me by another way saying that the form does not work.
I tried this, but it is ignored.
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; /* Blue */
}
.wpcf7 form.init .wpcf7-response-output {
display:none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; /* Net */
}
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
border-color: #ffb900; /* Yellow */
}
I have read that queries about the premium version should be written to an email that is on the right side of the form, but I can’t find any email.
thanks`
]]>A couple of questions:
* How does one upgrade to Pro? The Freemius page does not offer that option.
* What is the nature of the security issue that the plugin page is mentioning?
Thanks, Mario
Contact Form 7 RTL Dropdown
]]>Hi there, just a general question:
the default font color for cf7 fields wrapped in [md] is black – how do I change this to white? What is the class, that every field inherits the black font color from? It says something about dark theme, but I don’t see an option to change it to “light theme”.
]]>Hello guys,
i’m a premium member of this plugin.
Will you provide a patch for the security issue ?
We use the pro version of material design contact form 7. Will this plugin be kept up to date or will you guys stop using it altogether?
]]>Hello all.
I am having a bit of trouble with my contact form as client sof ten tells me that the file they try to attach is too big. I don’t understand it as I have not set a size limit. Any help is appreciated. Thanks.
[md-form]
[md-text label="Name"]
[text* text-827]
[/md-text]
[md-text label="Email"]
[email* email-160]
[/md-text]
[md-textarea label="Message"]
[textarea textarea-33]
[/md-textarea]
[md-file label=""]
[file file-320]
[/md-file]
[md-submit style="outlined"]
[submit "SEND"]
[/md-submit]
[/md-form]
]]>
Hi there,
“This plugin has been closed as of February 11, 2022 and is not available for download. This closure is temporary, pending a full review.”
Can you kindly let me know if there is any update please?
Thank you! ??
When used with the hCaptcha plugin the submit button breaks. Instead of showing a single submit button, the button is shown three times.
The hCaptcha plugin is a useful alternative to Google reCaptcha.
I wonder if you guys might take a look at this plugin combination and add compatibility in a future release.
]]>The plugin adds inline styles to all the pages of the website, Even if it doesn’t contain a CF7 form.
this ads unnecessary code that i want to remove on pages without a form.
i already has a script that checks for the CF7 shortcode:
add_action('wp_print_scripts', function () {
global $post;
if ( is_a( $post, 'WP_Post' ) && !has_shortcode( $post->post_content, 'contact-form-7') ) {
wp_dequeue_script( 'google-recaptcha' );
wp_dequeue_script( 'wpcf7-recaptcha' );
}
});
i tried to add
wp_dequeue_script( 'cf7-material-design-inline' );
and
wp_dequeue_style( 'cf7-material-design-inline' );
but not of that worked.
]]>The plugin adds inline styles to all the pages of the website, Even if it doesn’t contain a CF7 form.
this ads unnecessary code that i want to remove on pages without a form.
i already has a script that checks for the CF7 shortcode:
add_action('wp_print_scripts', function () {
global $post;
if ( is_a( $post, 'WP_Post' ) && !has_shortcode( $post->post_content, 'contact-form-7') ) {
wp_dequeue_script( 'google-recaptcha' );
wp_dequeue_script( 'wpcf7-recaptcha' );
}
});
i tried to add
wp_dequeue_script( 'cf7-material-design-inline' );
and
wp_dequeue_style( 'cf7-material-design-inline' );
but not of that worked.
]]>Hi,
please check MD File, it’s not doing anything when I press the button.
Thanks
]]>Hello
thank’s for your plugin.
I would like to know if it is possible to put a counter on a text field in contact form 7 like on the example on the opposite page.
see exemple
We need to add a checkbox to a contact7 form where applicants can choose from 3 time slots, but only 25 applications are possible per time slot.
[] 17:15
[] 17:45
[] 18:15
How can this be implemented? Thank you for your help, this is an application for a Santa event for kids!
Thank you very much!
]]>
Hello Angus,
I’m wondering if your pro version of the plugin will allow me to create a 2-column form that automatically collapses to one column when viewed on a mobile device?
Also, is there a way to adjust the vertical space or margin between fields? Sometimes when I’ve used your free version of the plugin with an outlined text box, when the text reduces to the top of the field, the top of the text gets cut off as though the top margin around the field is too small.
Thanks for your assistance with this inquiry Angus!
Rick
]]>After update WordPress to ver 5.8 and CF7 to ver. 5.4.2, I got a message from the debugger:
Notice: Trying to access array offset on value of type bool in …/wp-content/plugins/material-design-for-contact-form-7-premium/public/cf7-material-design-custom-style.php on line 78
Should I be worried and is there any way to fix this error?
]]>Hello, I used the material design to create a form, but I have 3 issues.
First one is the E is in form
The second one is captcha not showing.
And the last one is about icon who are on the text.
Here is my form :
[md-form]
[md-text label="Nom" icon="person"]
[text* Nom]
[/md-text]
[md-text label="Email" help="Email" icon="Email"]
[email* email-782]
[/md-text]
[md-textarea label="Votre message" help="Message" icon="edit"]
[textarea* Message]
[/md-textarea]
[md-file label="Votre ordonnance"]
[file* Ordonnance]
[/md-file]
[md-captcha]
[/md-captcha]
[/md-form]
[md-submit]
[submit "Envoyer"]
[/md-submit]
]]>
Greetings! You can check on our test page that after you choose the first option on the select dropdown, the next ones will be greyed out.
Any ideas on how to fix this?
I saw someone with the same issue in the past, but they fixed it by “Deactivating legacy styles”.
I am not sure this is the issue or even where to find this option.
Can you please assist me?
]]>Please note that the repeater on the 2nd textbox has the floating label and the actual text in the textbox. It is not moving to the top of the textbox.
Only happening when two repeaters are on the same contact form 7.
This is using Conditional Fields Pro for CF7 and Material Design CF7
Will appreciate any help.
Thanks
Suren
I got a problem with the use of acceptance tag. Worked fine so far but now if i try to send a mail it wont send. In the moment i check the checkbox following javascript error shows up:
index.js?ver=5.4.2:1 Uncaught TypeError: Cannot read property 'checked' of null
at index.js?ver=5.4.2:1
at NodeList.forEach (<anonymous>)
at t (index.js?ver=5.4.2:1)
at HTMLFormElement.<anonymous> (index.js?ver=5.4.2:1)
(anonymous) @ index.js?ver=5.4.2:1
t @ index.js?ver=5.4.2:1
(anonymous) @ index.js?ver=5.4.2:1
Without cf7 material design this problem dont exist. Any ideas how to fix this?
]]>Hi everyone,
The form works great, but as soon as I add a checkbox field to the form, the field labels that start as placeholders and float up when you focus the field are not working anymore. The label stays in the input field and when one types it is 2 sets of characters on top of each other.
What can I do to remedy this. If I can get the labels to float, great, but if not, how can I have the label disappear when the field gets focus and so you can read what the applicant writes?
Thank you/
Marc
ps. I have outlined=”Yes” as a parameter everywhere.
Hello Support,
I’m wondering if there is a way to remove the “Close” button that appears in the upper right side of the response that appears when trying to submit a form? I have a form placed inside a popup and once the form successfully submits, I don’t want users thinking they can close the popup by clicking the close button on the form response area.
Thanks for any help that you can offer!
RL
]]>Hello
Does the plugin support rtl languages like Arabic?
I’m trying to achieve this:
https://drive.google.com/file/d/1zWm8QwEx5yN5Kj0wid3T34pmrZRZVCI9/view?usp=sharing
Where “your name” is the label, and “your name here” is the placeholder.
Currently I can add a placeholder to the form in contact form 7, but it doesn’t play nice with the label. This happens:
https://drive.google.com/file/d/1WyG1FeSqs2lsgkJO_WEDVO3ACWpYXp6c/view?usp=sharing