-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
74 lines (64 loc) · 2.04 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/*
********************************************
RELF - Real Estate Lead Form by
AkEgo Development
********************************************
In this file are able to change some settings to personalize the form
How to:
Only change the text within the "xxxx". Otherwise the code can broke!
Note:
> Design aspects can be changed within the css-files inside the css/ folder
> The
*/
//
// General Settings
//
$sett_yourpagename = "My awesome page";
$sett_emailreceipent = "tomyemail@mymail.com";
$sett_emailsubject = "New lead form";
$sett_maxrooms = "10";
//send the user after submitting the form to your own landingpage
$sett_redirectpage = "https://myawesomewebsite.com/";
// Should email, telefon or message field required? Can be "true" or "false"
$sett_usermail_req = "true";
$sett_usertelefon_req = "true";
$sett_usermsg_req = "false"; //currently not in use
//
// Settings personal valuation
//
// Should personal valuation possible? Can be "true" or "false"
$sett_personalvaluation = "true";
$sett_personal_location = "true";
$sett_personal_getintouch = "true"; //currently not in use
//
// Settings online valuation
//
// Should online valuation possible? Can be "true" or "false"
$sett_onlinevaluation = "true";
//
// Settings for showing / hiding specific parts of form
// Important to know: All visible field are in default required to be filled out!!
//
// House
$sett_house_type = "true";
$sett_house_rooms = "true";
$sett_house_plotarea = "true";
$sett_house_livingspace = "true";
$sett_house_whenselling = "true";
$sett_house_location = "true";
$sett_house_getintouch = "true";
// Apartment
$sett_apartment_type = "true";
$sett_apartment_rooms = "true";
$sett_apartment_livingspace = "true";
$sett_apartment_whenselling = "true";
$sett_apartment_location = "true";
$sett_apartment_getintouch = "true";
// Plot
$sett_plot_type = "true";
$sett_plot_size = "true";
$sett_plot_whenselling = "true";
$sett_plot_location = "true";
$sett_plot_getintouch = "true";
?>