Remove 'individual Registration' from Breadcrumbs

  • Darren Whiteman
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
9 years 4 months ago #90511 by Darren Whiteman
Remove 'individual Registration' from Breadcrumbs was created by Darren Whiteman
Hi
I'm trying to figure out if I can remove 'Individual Registration' from appearing in the breadcrumbs when using the ebregister plugin code. It seems confusing to the user and I can't see where it comes from. If I remove the {ebregister xx} code from the K2 article it disappears.
Thanks

Please Log in or Create an account to join the conversation.

More
9 years 4 months ago #90557 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Remove 'individual Registration' from Breadcrumbs
Hi Darren

You will have to edit code if you want to remove the breadcrump:

1. Look at the file components/com_eventbooking/view/register/html.php

2. Find this line of code and remove it

$pathway->addItem(JText::_('EB_INDIVIDUAL_REGISTRATION'));

Regards,

Tuan

Please Log in or Create an account to join the conversation.

  • Darren Whiteman
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
9 years 4 months ago #90784 by Darren Whiteman
Replied by Darren Whiteman on topic Remove 'individual Registration' from Breadcrumbs
Commented all of this out and it worked great. Thanks Tuan!

if ($layout == 'default')
{$pathway->addItem(JText::_('EB_INDIVIDUAL_REGISTRATION'));}
else
{$pathway->addItem(JText::_('EB_GROUP_REGISTRATION'));}

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc