• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Need some code help

Need some code help 12 years 4 weeks ago #16968

  • NeaMatt
  • NeaMatt's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 10
I have a registration form for a conference and we offer a early bird prive discount

I have the following code on a registration form in the $formLayout of the form

if(time()>strtotime('28.03.2012'))
$formLayout = "Early Bird Registration is no longer available Please complete the Regular
Registration.";

How do I adda hyper like to the regular form? :blink:
The administrator has disabled public write access.

Re: Need some code help 12 years 3 weeks ago #17001

  • webcat-solutions
  • webcat-solutions's Avatar
  • OFFLINE
  • Junior Boarder
  • Dutch Joomla specialist
  • Posts: 29
  • Thank you received: 4
NeaMatt wrote:
I have a registration form for a conference and we offer a early bird prive discount

I have the following code on a registration form in the $formLayout of the form

if(time()>strtotime('28.03.2012'))
$formLayout = "Early Bird Registration is no longer available Please complete the Regular
Registration.";

How do I adda hyper like to the regular form? :blink:

Hi NeaMat,

you can use the following (you don't need to use '$FormLayout='):
if(time()>strtotime('28.03.2012'))
{echo 'Early Bird Registration is no longer available Please complete the <a href="http://www.mywebsiteurl.com/formurl">Regular Registration</a>.';}

Regards,
Chantal
The administrator has disabled public write access.
The following user(s) said Thank You: NeaMatt
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!