Dates and Location on top of Registration forms
- safeworld4women
-
Topic Author
- Offline
- Premium Member
-
Less
More
8 years 4 months ago - 8 years 4 months ago #91725
by safeworld4women
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Dates and Location on top of Registration forms was created by safeworld4women
Hi
I have asked for this as a future addition but just wondered if anyone has the kniwledge how to do this?
On RS Events Pro the date of an event and location can be added to the Registration form.
This makes complete sense because it can be a bit confusing for a client to arrive on the Registration page and only find the title of the event.
The site I am working on has several events which occur throughout the year and it is important they can easily see it is the right one they are paying for.
So being able to repeat the same information they have seen before - Start Date - End Date and Location on the form would be very helpful.
I have spent some time trying to see if I can identify the 'hooks' used on the Default Listing page and tried to add them in. But nothing has worked.
Simialrly I have looked at the event_properties file to see if I can add anything from there - but my PHP knowledge is a little slim!
So just wondering if anyone has any ideas of how this could be coded?
Thanks
Andrew
I have asked for this as a future addition but just wondered if anyone has the kniwledge how to do this?
On RS Events Pro the date of an event and location can be added to the Registration form.
This makes complete sense because it can be a bit confusing for a client to arrive on the Registration page and only find the title of the event.
The site I am working on has several events which occur throughout the year and it is important they can easily see it is the right one they are paying for.
So being able to repeat the same information they have seen before - Start Date - End Date and Location on the form would be very helpful.
I have spent some time trying to see if I can identify the 'hooks' used on the Default Listing page and tried to add them in. But nothing has worked.
Simialrly I have looked at the event_properties file to see if I can add anything from there - but my PHP knowledge is a little slim!
So just wondering if anyone has any ideas of how this could be coded?
Thanks
Andrew
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Last edit: 8 years 4 months ago by safeworld4women.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
8 years 4 months ago #91752
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Dates and Location on top of Registration forms
Hi Andrew
You can show these information on registration form message. Go to Events Booking -> Emails & Messages, find the message Registration Form Message (Individual) (it is for individual registration), edit it, including the following tags to show the information you want:
[EVENT_TITLE]
[EVENT_DATE]
[EVENT_END_DATE]
[LOCATION_NAME]
[LOCATION]
[SHORT_DESCRIPTION]
[DESCRIPTION]
With these tags, I believe you can provide the enough information you want for your registrants
Tuan
You can show these information on registration form message. Go to Events Booking -> Emails & Messages, find the message Registration Form Message (Individual) (it is for individual registration), edit it, including the following tags to show the information you want:
[EVENT_TITLE]
[EVENT_DATE]
[EVENT_END_DATE]
[LOCATION_NAME]
[LOCATION]
[SHORT_DESCRIPTION]
[DESCRIPTION]
With these tags, I believe you can provide the enough information you want for your registrants
Tuan
Please Log in or Create an account to join the conversation.
- safeworld4women
-
Topic Author
- Offline
- Premium Member
-
8 years 4 months ago - 8 years 4 months ago #91790
by safeworld4women
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Replied by safeworld4women on topic Dates and Location on top of Registration forms
Thanks Tuan
Actually James helped me to add the code directly into the registration file. (In the request forum)
Which works very nicely too!
Best
Andrew
Actually James helped me to add the code directly into the registration file. (In the request forum)
Which works very nicely too!
Best
Andrew
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Last edit: 8 years 4 months ago by safeworld4women.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
8 years 4 months ago #91791
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Dates and Location on top of Registration forms
That's great. As always, Thanks James for the assistance
Tuan
Tuan
Please Log in or Create an account to join the conversation.
- James Riley
-
- Offline
- Platinum Member
-
8 years 4 months ago - 8 years 4 months ago #91794
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic Dates and Location on top of Registration forms
As per my usual, I went about it the hard way with code modifications :whistle: .
Looking at the list of AVAILABLE TAGS for Registration Form Message, only [EVENT_TITLE] was listed.
Knowing now that other tags CAN be used...
Insert the following into the Registration Form Message(s) (Indiv & Group) as raw HTML:
And I've applied the following CSS styling:
Now, (with my other custom code mods for displaying an early-bird discount,) my event registration header now looks like this:
Looking at the list of AVAILABLE TAGS for Registration Form Message, only [EVENT_TITLE] was listed.
Knowing now that other tags CAN be used...
Insert the following into the Registration Form Message(s) (Indiv & Group) as raw HTML:
Code:
<div class="event_location">[LOCATION]</div>
<div class="event_date">[EVENT_DATE]</div>
And I've applied the following CSS styling:
Code:
.eb-message h3 {line-height: 1.1em; margin-top: 10px !important;}
#eb-individual-registration-page .event_location:before, #eb-group-registration-form .event_location:before{
font-family: fontAwesome; content:"\f0ac"; padding-right:10px;
}
#eb-individual-registration-page .event_date, #eb-group-registration-form .event_date {
font-style:normal; padding-bottom:10px; margin-bottom:10px; border-bottom:1px solid #999;
}
#eb-individual-registration-page .event_date:before, #eb-group-registration-form .event_date:before {
font-family: fontAwesome; content:"\f073"; padding-right:10px;
}
Now, (with my other custom code mods for displaying an early-bird discount,) my event registration header now looks like this:
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Attachments:
Last edit: 8 years 4 months ago by James Riley.
The following user(s) said Thank You: safeworld4women, Simon Shaw
Please Log in or Create an account to join the conversation.
- safeworld4women
-
Topic Author
- Offline
- Premium Member
-
8 years 4 months ago - 8 years 4 months ago #91796
by safeworld4women
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Replied by safeworld4women on topic Dates and Location on top of Registration forms
James,
Enjoying this conversation
Makes website work more fun!
So actually I have used both!
I am using
on the Registration Form Message.
And your location code added into the individual registration page coding.
My reason for doing that is - when I used
on the Registration Form message
It brings the whole address in - which was too long.
With your coding, James, I can select to use just the name of the Venue, Town and Country.
Which is bit neater for my needs.
So this is what the top looks like...
So thanks to both of you!
Enjoying this conversation

Makes website work more fun!
So actually I have used both!
I am using
Code:
[EVENT DATE] - [EVENT_END_DATE]
And your location code added into the individual registration page coding.
My reason for doing that is - when I used
Code:
[LOCATION]
It brings the whole address in - which was too long.
With your coding, James, I can select to use just the name of the Venue, Town and Country.
Which is bit neater for my needs.
So this is what the top looks like...
So thanks to both of you!
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Attachments:
Last edit: 8 years 4 months ago by safeworld4women.
Please Log in or Create an account to join the conversation.
- James Riley
-
- Offline
- Platinum Member
-
8 years 4 months ago #91804
by James Riley
James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Replied by James Riley on topic Dates and Location on top of Registration forms
Yes, the extra address info provided in the [LOCATION] tag is a little much... but I decided I can live with it

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
8 years 4 months ago #91838
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Dates and Location on top of Registration forms
Note that [LOCATION_NAME] tag is also available which will only display name of the location
Tuan
Tuan
Please Log in or Create an account to join the conversation.
- safeworld4women
-
Topic Author
- Offline
- Premium Member
-
8 years 4 months ago #91853
by safeworld4women
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Replied by safeworld4women on topic Dates and Location on top of Registration forms
Hi Tuan
Yes I looked at the [LOCATION_NAME] tag as well.
Main thing is it's good for people to know there are the extra tags which they can use.
Very happy with the Date tags!
Andrew
Yes I looked at the [LOCATION_NAME] tag as well.
Main thing is it's good for people to know there are the extra tags which they can use.
Very happy with the Date tags!
Andrew
I am the Operations Director and lead Developer for The Safeworld International Foundation - an award winning international Non-profit working for women's empowerment.
I also design websites for non-profit organisations and small ethical businesses.
Please Log in or Create an account to join the conversation.
Moderators: Tuan Pham Ngoc
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.