GusRuss89
Forum Replies Created
-
Forum: Plugins
In reply to: [Material Design for Contact Form 7] Design broken after update to 1.6.2Hi @thomashofer,
The only difference between v1.6.1 and 1.6.2 was a JavaScript change. Your screenshot suggests the plugin is either disabled or has a PHP error.
Did you definitely upgrade from v1.6.1? If so, maybe something went wrong with the update process, or maybe it was somehow disabled without you noticing.
Can you try updating again and let me know how it goes?
Thanks,
AngusHi @vladimirt
The download link in your original email should still work if you can find it.
Alternatively, you can copy the plugin folder from a current site and zip it up, then install by uploading the zip.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Undefined Error on Send ButtonThat might be a network error or something. Keep trying, it should work for you.
The update may also fail if you’re using the pro version and your license is expired/cancelled. In that case, you’ll need to wait until you’ve got a current license before updating.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Undefined Error on Send ButtonI’ve released an update to the plugin that will fix your problem. Please let me know if it works (or if it doesn’t) so that I can close this issue.
Thanks,
AngusThe forums are not for sales related support, I’ll respond to your email and close this issue.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Undefined Error on Send Button@shubhamdahale can you please try activating the default theme and see if you still see “Undefined”. I think your theme might be making changes to the button that conflict with the plugin.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] data you have entered may not be saved@daziumdesign can you confirm this is happening only when you edit a contact form, and not pages or posts?
Forum: Plugins
In reply to: [Material Design for Contact Form 7] date and number@didoulr you can use the
[md-text]shortcode for both.[md-form] [md-text label="Datedenaissance"] [date* Datedenaissance] [/md-text] [md-text label="Age"] [number* Age] [/md-text] [/md-form]Forum: Plugins
In reply to: [Material Design for Contact Form 7] data you have entered may not be saved@2020media I think this is actually an issue with the live preview plugin. Are you using that as well, and can you confirm that it resolves if you deactivate that plugin?
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Drop Down Select styleHi @2020media
The select field is a bit different to the rest in that it doesn’t actually have a label – instead it inserts your label text as the first option in the field. It’s done this way because at the time it was built, the Material Components library (by Google) didn’t have a good alternative.
It will be fixed in an upcoming release, but if you just want to fix the colour, and know how to add some JavaScript and Custom CSS to your theme, you can do the following.
1. Add this JavaScript to your theme
jQuery(document).on('ready', function(){ jQuery('.cf7md-select select').on('change', function(e) { if (jQuery(this).val() !== jQuery(this).find('option:first-of-type').attr('value')) { jQuery(this).addClass('is-selected').removeClass('is-label') } else { jQuery(this).removeClass('is-selected').addClass('is-label') } }) })2. Add this CSS to Appearance > Customizer > Material Design Forms > Custom CSS
#cf7md-form .mdc-select.is-label { color: rgba(0, 0, 0, 0.38); } #cf7md-form .mdc-select.is-selected { color: rgba(0, 0, 0, 0.87); }Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Full width buttonHi @2020media,
You can do this with some custom CSS (add it under Appearance > Customize > Material design Forms > Custom CSS).
#cf7md-form .cf7md-submit-btn { width: 100%; background: red !important; } #cf7md-form .cf7md-submit-btn:hover { background: blue !important; /* Hover colour */ }Hope that helps 🙂
Thanks,
AngusForum: Plugins
In reply to: [Live Preview for Contact Form 7] Wordpess admin bar on fron-end@jvj thanks for reporting this. I’ve released an update that fixes the issue.
Forum: Plugins
In reply to: [Live Preview for Contact Form 7] Deactivation failsHi @2020media
Thanks for the report.
I’ve have updated the plugin with a fix for this issue.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] AnnoyancesHi @2020media
Thanks for the feedback. I’m not sure when the (x) stopped working for the ad, but I’ll fix that Asap.
You can remove the “Customize your form’s colours and fonts.” message using this CSS in Appearance > Customizer > Material Design Forms > Custom CSS:
.cf7md-admin-customize-message {
display: none;
}I will also add an admin option to remove this message in an upcoming release.
Thanks again,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] data you have entered may not be saved