pichichi
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Restrict input accessTry this.
Follow the steps above but on the mail tab, in the subject box, replace whatever is there with
[_post_title]
That works for normal posts, does that work with your woocommerce posts?
Forum: Plugins
In reply to: [Contact Form 7] Email without attachementsIn the mail tab, you have to put your attachment short-codes in the attachment field, like this…
[file-323] [file-463] [file-482] [file-103] [file-199]
Instructions: https://contactform7.com/file-uploading-and-attachment/
Hi Alex,
In my case I had previously optimised images using other services and plugins before discovering ShortPixel, I did not want to re-optimise all the old jpgs on all my sites only add webp support.
I understood your plugin was not marketed solely for webp so it wasn’t a dissapointment, but I think it would be useful for people moving over, especially those with bigger sites or multiple sites.
Cheers.
- This reply was modified 6 years, 8 months ago by pichichi.
Forum: Plugins
In reply to: [Contact Form 7] Restrict input accessIn the form tab delete the part referencing the subject line, it should be something like this you are removing:
<label> Subject [text your-subject] </label>
In the mail tab delete everything in the “subject” box, and enter whatever subject you want for that form.
Also in the mail tab, go to the “message body” box and delete references to the subject, it probably looks something like this:
Subject: [your-subject]
- This reply was modified 6 years, 8 months ago by pichichi.
Forum: Plugins
In reply to: [Contact Form 7] Forward to multiple pagesNot sure if this will fix it fully but the
if
statement needs a closing}
before it can move toelse
.So that line in your broken code block should end
2018/';}
and not2018/';
Forum: Plugins
In reply to: [Contact Form 7] Execute code after sending emailYou can use the custom DOM event
wpcf7mailsent
, doumentation is here: https://contactform7.com/dom-events/A popular example being opening a new page after submitting using JavaScript:
<script> document.addEventListener( 'wpcf7mailsent', function( event ) { location = 'https://yourredirectpage.com/'; }, false ); </script>
Forum: Plugins
In reply to: [Contact Form 7] The field is requiredAh you did already, happy days!
Forum: Plugins
In reply to: [Contact Form 7] The field is requiredGreat!
Please mark as resolved it helps other people find solutions and also find people that still need help
Forum: Plugins
In reply to: [Contact Form 7] 1 configuration error detected in this tab panelNo problem!
Forum: Plugins
In reply to: [Contact Form 7] 1 configuration error detected in this tab panelIn the first chunk:
<font color=”#67923D”> <label> Your Name: (required) [text* your-name] </label
is missing closing bracket at the end, so add
>
straight after the l in label.That is an error. Try that, do you still have a validation error? If so it may be in another tab.
- This reply was modified 6 years, 9 months ago by pichichi.
Forum: Plugins
In reply to: [Contact Form 7] The field is requiredIn your form do you have something like this with asterisk?
[text* company]
If so, remove the asterisk.
Does that fix it?
Forum: Plugins
In reply to: [Contact Form 7] Thank you mailSure, just put the shortcode used for their message (the default one is [your-message] ) into the Mail (2) box.
For example a basic example of what to use in Mail (2):
Thank you for your message, we will be in touch blah blah blah Original message: [your-message]
Change
[your-message]
to whatever you used for their original message