lobert
Forum Replies Created
-
Hi,
Yeah Ill try deactivating each plugin and see if thats the issue. Is there a way to hard code a message on the customer-processing-order.php file if local pickup is set with your plugin? Right now the issue is appearing on this email. Maybe an if statement could work?
Thanks
Hi,
Thanks for looking into this. I’m not using any customizer nor have I edited the email template file. So when I remove all text from the field, nothing appears in the email that is received. When I enter any text – I just tried adding “hello” and it appeared twice. I cant share a link to the site here but if you want to see this in action let me know how I can contact you.
Thanks
Forum: Plugins
In reply to: [Advanced Forms for ACF] Success Message in ModalHi Fabian,
Thanks for getting back to me. I was thinking about doing that – no really, I was! ??
I’m using UIKit. I added the following and it worked!
if (document.getElementsByClassName('af-success').length){ UIkit.modal('#request').show(); }
Thanks
- This reply was modified 4 years, 7 months ago by lobert.
- This reply was modified 4 years, 7 months ago by lobert.
- This reply was modified 4 years, 7 months ago by lobert.
- This reply was modified 4 years, 7 months ago by lobert.
- This reply was modified 4 years, 7 months ago by lobert.
- This reply was modified 4 years, 7 months ago by lobert.
Forum: Plugins
In reply to: [Advanced Forms for ACF] Add page title to entryHi Fabian,
I used CSS and hid the form field. Just thought there might be another way to achieve this, but this option will work.
Thanks
Forum: Plugins
In reply to: [Advanced Forms for ACF] Add submission entry ID to emailHi Fabian,
Are you able to take a look at this?
Thanks
Rob
Forum: Plugins
In reply to: [Advanced Forms for ACF] Add submission entry ID to emailHi Fabian,
Did another test on a clean install with default theme and the same results – the actual post ID does not match the result being returned by {entry_id}.
Thanks
L
Forum: Plugins
In reply to: [Advanced Forms for ACF] Add submission entry ID to emailHi Fabian,
Thanks for the quick reply. Well that is certainly much easier than how I was trying to do it!
Interestingly, the ID’s are off by one. I just did 2 test submissions. The first test created a post with an ID of 5815 – the url of the submission is: /post.php?post=5815&action=edit but in the email the ID is returned as 5814.
The second test created a post with an ID of 5817 and in the email the ID says 5816
Seems the {entry_id} is returning the ID – 1.
Thanks
L
Forum: Plugins
In reply to: [Advanced Forms for ACF] Email recipient based on select optionHi Fabian,
That worked! Thanks very much. I actually had to send emails based on 2 select menu option so used this:
//the recipient $recipient = af_get_field( 'recipient' ); //the email subject $subject = af_get_field( 'subject_email' ); if ( 'feedback' == $subject && 'singapore' == $recipient ) { return array( '[email protected]', '[email protected]', '[email protected]' ); }
Perhaps I should start another topic.. Having csv export of entries would be great. I know I can export entries but my clients arent able to do that. Even if you added this to the paid version I’d be happy to buy!
Thanks
Forum: Plugins
In reply to: [Advanced Forms for ACF] Email recipient based on select optionHi,
Thanks for the suggestion. When you say “Then in the email notifications you can set it against this value.” what do you mean exactly – do you mean under “Send to” choose “select from field” and choose the select menu as the recipient field?
One concern I have with this option is that I actually have 3 email accounts to send to if option 1 is chosen and 4 emails if option 2 is chosen so not sure how you could add multiple emails as a select value.
Thanks
Rob