ashamun
Forum Replies Created
-
Forum: Plugins
In reply to: [Generate PDF using Contact Form 7] Form Submission Just SpinsThe update to version 4.0.2 seems to have worked. I appreciate the help!
Forum: Plugins
In reply to: [Generate PDF using Contact Form 7] Form Submission Just SpinsSorry for my delay @zealopensource
Here is a screenshot of the Plugin Settings and the HTML from the PDF Message Body.
Plugin Settings Screenshot: https://wardsautosupply.com/wp-content/uploads/2023/04/settings-screenshot-scaled.jpg
Message Body HTML: https://wardsautosupply.com/wp-content/uploads/2023/04/wards-pdf-html.html
Forum: Plugins
In reply to: [Generate PDF using Contact Form 7] Form Submission Just SpinsThank you for getting back to me! Here is an error log with the relevant lines:
https://wardsautosupply.com/wp-content/uploads/2023/04/error_log.txt
Let me know if you need anything else.
- This reply was modified 3 years, 2 months ago by ashamun.
That’s great! Not sure why it didn’t occur to me. Thanks Jules!
Hi Jules,
Thanks for the quick reply!
I was afraid of that :(. Is there another way to achieve what I’m trying to achieve? Where I can have the email go to either the state value OR the group value?
There may not be, but thought I’d ask.
Forum: Plugins
In reply to: [WP Store Locator] Map Ignores Zoom Setting in PHPThanks for the fast reply Tijmen. I unchecked the auto adjust option and it started working perfectly.
Great plugin! Thanks again.
Forum: Plugins
In reply to: [WP Store Locator] Results List Mobile Scroll IssueHmm…perhaps it’s my theme then.
The URL is http://northeast.napapromo.com/store-locator/.
Forum: Plugins
In reply to: [WP Store Locator] Add Featured Image to Info BoxThis is great. Thanks man!
Forum: Plugins
In reply to: [Contact Form 7] validating formHi saxena,
I’m not sure I understand what’s happening. Would it be possible for you to send me a link to the page so I can see what you’re talking about?
Forum: Plugins
In reply to: [Contact Form 7] Changing the layout of Checkboxes in Contact Form 7Sorry for my delay. Been buys with work.
Ok, get rid of what I gave you before and try this:
span.wpcf7-list-item { width: 100%; max-width: 320px; }Forum: Plugins
In reply to: [Contact Form 7] Changing the layout of Checkboxes in Contact Form 7You could try something like this:
span.wpcf7-list-item { -webkit-columns: 2; -moz-columns: 2; columns: 2; }If it works but doesn’t look right, try giving “span.wpcf7-list-item” a defined width and killing its margin. Play around with its vertical align as well.
Unfortunately, this solution doesn’t work for IE. For IE, you’ll have to implement some JavaScript.
Forum: Plugins
In reply to: [Contact Form 7] Changing the layout of Checkboxes in Contact Form 7I’m not sure what you’re talking about. You want to have the questions in two columns? Or the check boxes in two columns?
I’d be glad to help you with the CSS but please explain what you mean in a bit more detail.
Forum: Plugins
In reply to: [Contact Form 7] multi fields on a lineYou could float each field left then give them some margin and define their width but you’ll have to account for mobile using media queries or something. You may want to add the styling to divs though and just throw each field into each div.
Alternatively, I would just use Bootstrap and put each field in a col-md-6. Ten times easier.
Forum: Plugins
In reply to: [Contact Form 7] validating formPerhaps one of these will work for you:
Contact form 7 Custom Validation
For your second question, you could use something like this and just send it to the admin as well as the user:
Alternatively, you could use a plugin that databases the forms in the CMS and allows you to export them as PDF. Most will allow for this.
Forum: Plugins
In reply to: [Contact Form 7] Multiple Entries for Field GroupsI know exactly what you’re talking about but I’m not sure a plugin like that exists. Heres how I would do it:
I would add a row of fields for the first order, then at the end of that row, have a dropdown or radio button that asks “Do you have another order?”. If they select “yes”, use the Contact Form 7 Conditional Fields plugin (linked below) and duplicate the set of questions again. They can do this over and over again until they answer “No” to the question.
Let me know if that doesn’t make sense and I’ll try to explain it better.