swbdatw
Forum Replies Created
-
Unfortunately the error still exists. It took me hours to figure it out. -_-
Forum: Plugins
In reply to: [Event Tickets and Registration] URL Output in the RSVP MailWait a minute, please. ??
Yes, I need the URL for the Event itself. But we don’t use the Event Calendar, we would like to put the RSVPs in other Customs Post Types, so we need the URLs.All right…
we were able to make the SMTP settings with outside help, it now works even without switching on the ‘Disable email notifications’ switch.What we had done wrong: We had not enabled the floating widget in the FormyChat settings! We have now changed this and hidden the widget via CSS, as it is not needed.
The only issue is that WhatsApp doesn’t open in the mobile view yet, so we’ll probably have to buy the premium version.
We actually wanted to try this out in the FormyChat demo, but as CF7 is not installed there, this is unfortunately not possible.
So we’re relying on the fact that it will work if we buy Premium…Thanks for your support so far.
Thank you for the detailed answer.
As I said, I don’t know how to configure the SMTP plugin and I don’t have the time.So I have integrated the CF7 form into FormyChat.
I filled out the form on my smartphone and sent it. However, I am redirected to the website api.whatsapp.com. I should download WhatsApp there.
But I do have WhatsApp installed on my smartphone! Why can’t I get to my WhatsApp automatically?And then it seems that the recipient of the form only receives a WhatsApp message when I trigger the message manually in WhatsApp.
Doesn’t that work automatically?OK, but…. the plugin is not working for me…
I have entered my WhatsApp number in the FormyChat settings and installed the WP Mail SMTP plugin (without configuration).
If I now fill out the CF7 form in the frontend and send it, I only get an email to my stored address as usual. I get nothing at all via WhatsApp.
What am I doing wrong?I have the same issue. Also, if I deactivate or delete the WP Mail SMTP plugin, the cloned page is completely broken! Even activating the plugin can’t fix the error. I have to completely regenerate the staging site!
I use the “WP Staging PRO” plugin…Forum: Plugins
In reply to: [Relevanssi - A Better Search] Switching to main language using PolylangIt worked.
Thank you very much! :)
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Switching to main language using PolylangOK, and how can I do that?
We code the Site all manual…
<form role="search" method="get" id="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>" class="input-group my-2">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text p-0">
<i class="fas fa-search text-muted"></i>
</span>
</div>
<div class="inline-block">
<div class="thesearch">
<input type="search" size="3" class="form-control border-0" placeholder="Search..." aria-label="search nico" name="s" id="search-input" value="<?php echo esc_attr( get_search_query() ); ?>">
</div>
</div>
</div>
</form>Forum: Plugins
In reply to: [Contact Form 7] Custom Fields as E-Mail recieverI tried it out… but it still doesn’t work. ??
Forum: Plugins
In reply to: [Contact Form 7] Custom Fields as E-Mail recieverYes, of course and I have set up the AC field as an email field.
I have to mention that the form is all built in on posts of a custom post type.
Could that be causing the error?Forum: Plugins
In reply to: [Contact Form 7] Custom Fields as E-Mail recieverOK. I have inserted this code at the end of the functions.php …
add_action('wpcf7_before_send_mail', 'modify_recipient_email'); function modify_recipient_email($contact_form) { $target_form_id = 506; if ($contact_form->id() != $target_form_id) { return; } $submission = WPCF7_Submission::get_instance(); if (!$submission) { return; } $post_id = $submission->get_meta('container_post_id'); if (!$post_id) { return; } $custom_email = get_field('form_email', $post_id); if (!$custom_email || !is_email($custom_email)) { return; } $mail_properties = $contact_form->prop('mail'); $mail_properties['recipient'] = $custom_email; $contact_form->set_properties(['mail' => $mail_properties]); }
In the CF7 e-mail settings, I have inserted the shortcode [_site_admin_email] in the recipient field.
Forum: Plugins
In reply to: [Contact Form 7] Custom Fields as E-Mail recieverOK, one mistake was that I had taken the form ID in my case “5a4b224” from the shortcode…
[contact-form-7 id=”5a4b224″ title=”Contact Form”]
But the ACF field name is correct… Nevertheless, the emails are only ever sent to the admin of the website! ??
I don’t know what I’m doing wrong…It is also not clear to me where the “container_post_id” comes from. I can’t find one in the source code, maybe it can’t generate the $post_id
- This reply was modified 10 months ago by swbdatw.
Forum: Plugins
In reply to: [Contact Form 7] Custom Fields as E-Mail recieverThat’s excactly what I need! But doesn’t work for me… ??
What must be entered in the e-mail recipient field in the CF7 settings?
Where can I find the “container_post_id” in the source code?
Forum: Plugins
In reply to: [Event Tickets and Registration] Export attendees as a CSV fileHi Atousa,
Regarding your questions:
1. PHP 8.1.28
2. WordPress 6.5.2
3. Event Tickets 5.9.1
4. Theme: Underscores 1.0If I click on the export button only a new tab is opened. The content in it s the normal attendee list.
But I can see the CSV-Link which is on the export button if I Hover the export button.
Forum: Plugins
In reply to: [Event Tickets and Registration] Export attendees as a CSV fileThank you for your answer.
We only use event tickets and have coupled this plugin with another job plugin for the RSVPs. We do not need Events Calendar.
Nevertheless, I installed it once for testing and the export still does not work. Probably you have to book the RSVPs via the calendar?
Then it won’t work for us…
- This reply was modified 11 months ago by swbdatw.