GusRuss89
Forum Replies Created
-
Hmm that’s strange then, I will have to figure out why it’s not working at all for me, then make sure it also works with my plugin.
Thanks for letting me know. I will take another look.
Forum: Plugins
In reply to: [Material Design for Contact Form 7] text move up not working on Long formHi @2belegit,
Sorry for the late reply, I’m just coming back online after Christmas.
Is your site live somewhere that I can look at it? I’m happy to debug for you.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Fatal errorHi @camilo517,
Your theme, Pixi, is using an outdated version of the TGM Plugin Activation library. You can try updating your theme, and if that doesn’t work, you might need to contact the support for your theme.
The other thing you can do is just replace this file in your theme:
/wp-content/themes/pixi/framework/admin/tgm-plugin-activation/class-tgm-plugin-activation.phpWith the latest version which you can download here – http://tgmpluginactivation.com/download/
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] Autocomplete chrome errorHi Vladimir,
Thanks for letting me know.
Can you confirm, turning off my plugin also fixed the error loading the Contact Form 7 scripts?
If that’s the case, I wonder if perhaps you got a corrupted plugin file or something, and a reinstall might have worked.
Thanks,
AngusHi @lech-dutkiewicz,
That’s great to hear 🙂
If you have the time, posting a review for the plugin will help me out quite a lot.
Thanks,
AngusHi @lech-dutkiewicz,
FYI, I’ve just released version 2.2.0 which should fix this issue. Please let me know if it doesn’t.
Thanks,
AngusHi @lech-dutkiewicz,
Thanks for letting me know. This is definitely a bug – I thought the plugin already dealt with this scenario but obviously it doesn’t any more.
I’m planning on releasing an update in the next week or two that changes how the outlined fields are drawn. I will include a fix for this issue.
I’ve had a quick go at creating a temporary solution for you but I don’t think there’s any easy way to do it. I’ll try to get the new release out ASAP, and I’ll let you know when it’s done.
Thanks,
AngusHi Vladimir,
A 409 error means that there was a conflict with the state of the file on the server side. It could be that your router had a corrupted cache or something, but to be honest I really don’t know how it could have happened.
It’s also weird that it only happened in Safari – I’m actually surprised that emptying your cache in Safari didn’t fix the issue.
Anyway thanks for reporting. If I hear about the issue from anyone else I’ll continue to investigate, but at this stage it seems related to your router/network.
Thanks,
AngusHi @vladimirt,
I’m also on Mojave so our setup is the exact same.
Hmm. A couple of other things to try:
1. Try clearing Safari’s cache for your specific site (instructions here – https://www.macworld.co.uk/how-to/mac-software/safari-cache-mac-3496193/)
2. Are you logged in? If so, try logging out and see if that fixes it.
Thanks,
AngusHi @vladimrt,
Hmm, on the same version of Safari I get no errors. Are you on the Windows or Mac version of Safari?
If you know how to edit files on your server (through CPanel, FTP, SSH etc), can you try this for me please? Open the file at
wp-content/plugins/material-design-form-contact-form-7-premium/v1/public/cf7-material-design-public.phpand find the linepublic function add_scripts_and_styles() {.Note: make sure you notice the
v1in the path – there’s a similar file without thev1but it won’t have any effect for you.Inside that function there are several lines that start with
wp_enqueue_. In each of these lines (except for the Google font one), there is a version number near the end of the line (1.0, 1.0, 1.1, 2.0).Try just adding 0.1 to each of those numbers so that they’re 1.1, 1.1, 1.2 and 2.1. Make sure to keep the single quotes around the number.
Save the file and put it back in the same place (if you’re using FTP).
Refresh safari and see if it fixes the issue for the material design files. Let me know your results.
Thanks,
AngusHi @vladimirt,
I haven’t fully tested on WP 5.0 yet, but this error looks like it’s to do with Contact Form 7 itself. That path is in the
plugins/contact-form-7folder.Is your CF7 plugin up-to-date?
Also, when I test your page, I don’t get any errors in Safari – were you able to fix it on your own? If so, mind telling me what did it?
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] label and check box option in same lineHi,
Your screenshot looks different to what I would expect. To help you further I’d need to see your actual website. Is it live?
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] label and check box option in same lineHi,
I see what you mean now.
There is no built-in way to do that, but here’s how you can do it with some custom form code and CSS.
Your form code should be:
<div class="label-inline-radio"> [md-radio label="Have you ever been issued a U.S. Visa?" display="inline"] [radio HaveyoueverbeenissuedaUSVisa "Yes" "No"] [/md-radio] </div>And you can add this custom CSS under Appearance > Customise > Material Design Forms:
#cf7md-form .label-inline-radio .cf7md-label { float: left !important; width: auto !important; max-width: 50% !important; margin-right: 20px !important; } #cf7md-form .label-inline-radio .wpcf7-form-control-wrap { overflow: hidden; width: auto !important; }Note: I changed your checkboxes to radios. With checkboxes, both options could be ticked (e.g. yes AND no). With radios, only a single option can be ticked.
Let me know if you need any further help.
Thanks,
AngusForum: Plugins
In reply to: [Material Design for Contact Form 7] label and check box option in same line