Joomla 5 Mitteilung

Wir freuen uns mitteilen zu können, dass seit dem 29. Januar 2024 alle unsere Joomla Erweiterungen mit Joomla 5 kompatible sind.

Für alle die gerade noch von Joomla 3 auf 4 aktualisieren: Anleitungen für die Joomla 4 Migration gibt es hier:

Es gibt nun auch eine eigenständige Dokumentation für Visforms für Joomla 4 und für Visforms auf Joomla 5

Forum

Visforms Subscription Inhaber können in unserem Forum Fragen stellen. Bitte mit dem entsprechenden Benutzer anmelden.
Jeder kann lesend auf das Forum zugreifen.

Bitte stellen Sie nur 1 Frage pro Thema.

Wichtig Angaben für fast jede Frage:
V1: Welche Visforms-Version läuft?
V2: Welche Joomla-Version läuft?
V3: Welche PHP-Version läuft?

Aufgrund von Feiertagen und Urlaub ist bei Anfragen im Forum in der Zeit vom 20. Dezember 2024 bis zum 8.Januar 2025 mit verlängerten Antwortzeiten zu rechnen.

How can I reply to sender

Mehr
10 Jahre 9 Monate her - 10 Jahre 9 Monate her #476 von stampgo7
How can I reply to sender wurde erstellt von stampgo7
Hello there,
first of all let me thank the creator of this grate extension.

I have a site for searching and booking accommodation and I have a problem:

When a visitor choose a hotel and sent request to the owner it is ok. What should I do in the parameters in order when the owner click the reply button, to reply straight to the visitor (who is the sender) and not reply to my sites e-mail?

Thank you.
Letzte Änderung: 10 Jahre 9 Monate her von stampgo7.

Mehr
10 Jahre 9 Monate her #477 von Administrator AV
Administrator AV antwortete auf How can I reply to sender
Hi stampgo7,

sadly that is just not possible yet. It's annoying, I know, and I made it a point on my todo list. It will come in future versions.

Regards,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).
Folgende Benutzer bedankten sich: stampgo7

Mehr
10 Jahre 9 Monate her - 10 Jahre 9 Monate her #478 von stampgo7
stampgo7 antwortete auf How can I reply to sender
Thank you for your quick reply.
I will be waiting for you to solve that issue.

George
Letzte Änderung: 10 Jahre 9 Monate her von stampgo7.

Mehr
10 Jahre 8 Monate her - 10 Jahre 8 Monate her #479 von Administrator AV
Administrator AV antwortete auf How can I reply to sender
Hi guys,

there are so many request for this feature that I will give a description how to fix it here. I will include this changes into the source code of Visforms and they will be part of the next release. So you can make the following changes to the code without fear of loosing them on the next update of Visforms.

The changes are the same for visforms 2.0.x and 3.0.x. They are not meant for Visforms 1.0 Versions!

Go to components/com_visforms/models/visforms.php, make a backup copy of this file and open it.

At about line 808 you find the section "Send Email Result"

find the line
Code:
$mailBody = $mailBody."registered at ".date("Y-m-d H:i:s")."<br /><br />\n\n";

(about 5th line in the first if statement)

replace it with
Code:
$mailBody = $mailBody."registered at ".date("Y-m-d H:i:s")."<br /><br />\n\n"; $emailSender = "";
find the line
Code:
$field = $visform->fields[$i];
(just 2 or 3 lines below, right at the top of the following for-Statement)

replace it with
Code:
$field = $visform->fields[$i]; if ($field->typefield == 'email') { if (isset($field->postValue)) { $emailSender = $field->postValue; } }

find line
Code:
$mail->setSender( array( $visform->emailfrom, $visform->emailfromname ) );
about 50 lines below but before "Send Email Receipt" section

Replace it with
Code:
if ($emailSender == "") { $emailSender = $visform->emailfrom; } $mail->setSender( array( $emailSender, $visform->emailfromname ) );
That's it.

Good luck and kind Regards,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).
Letzte Änderung: 10 Jahre 8 Monate her von Administrator AV.

Mehr
10 Jahre 8 Monate her - 10 Jahre 8 Monate her #480 von stampgo7
stampgo7 antwortete auf How can I reply to sender
Hello again,
the line
$mail->setSender( array( $visform->emailfrom, $visform->emailfromname ) );
does not exist
I can find this similar line:
$mail->setSender( array( $visform->emailfrom, "" ) );
and if I do all the corrections you say the site crashes.
Is there a way to attache the file?

George
Letzte Änderung: 10 Jahre 8 Monate her von stampgo7.

Mehr
10 Jahre 8 Monate her #481 von Administrator AV
Administrator AV antwortete auf How can I reply to sender
Hi,

which Version Visforms do you use? Check in Extension Manager -> Manage please.

You can send me the file to my contact e-mail which you can find below the forum.

Regards,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).

Moderatoren: Administrator AVAdministrator IV
Powered by Kunena Forum