Okay for the "pay" link.
So, for the "create/join teams" and "sign up for tournaments" links... how can I make it work so that the user doesn't need to choose à seat? There must be a way to do it...
Edit: On the Tournaments page, how can I modify the "Register" link so that it links to another page that I created myself?
On the mls_tournaments.html.php, I changed this:
| Code: |
<a href="<?php echo JRoute::_("index.php?option={$option}&task=register&Itemid={$Itemid}&eventid={$event->id}&tournamentid={$row->id}"); ?>"><?php echo JText::_('REGISTER'); ?></a>
|
to this:
| Code: |
<a href="<?php echo JRoute::_("index.php/tournaments/register"); ?>"><?php echo JText::_('REGISTER'); ?></a>
|
However, when I click on the "Register" link located in the "Tournaments" page, it links to "index.php/tournaments/register/tournaments" and not "index.php/tournaments/register". How come?