About date filter in event listing

  • sudeep
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 6 months ago - 9 years 6 months ago #87294 by sudeep
About date filter in event listing was created by sudeep
Hello sir,
I have one query regarding the event listing page.
I want category and event listing in the attached screenshot format.
How can i have date filter in the listing layout and category filter.
Please suggest.
Thanks.
Last edit: 9 years 6 months ago by sudeep.

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

More
9 years 6 months ago #87325 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic About date filter in event listing
Hi

Unfortunately, that kind of layout is not supported in Events Booking, so if you need to have this layout, you will have to write code to add a new view in the extension to be able to display events using this layout (nice layout BTW). You need a Joomla developer with good programming skill to build this new custom layout / view

Regards,

Tuan

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

  • sudeep
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 6 months ago #87623 by sudeep
Replied by sudeep on topic About date filter in event listing
Hello Tuan,
I have a problem in layout.
I want event listing page without sidebar and detail page with sidebar. So how can i check condition if its event listing page in themes index.php.

like :

if !(eventlistingpage) {
show sidebar
}

or is there any other way to hide sidebar in eventlisting page.

Thanks.

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

More
9 years 6 months ago #87644 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic About date filter in event listing
$input = JFactory::getApplication()->input;

$option = $input->getCmd('option');
$view = $input->getCmd('view');

if ($option == 'com_eventbooking' && $view == 'event')
{
// This is event detail page, so you can show sidebard
}

Tuan

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

Moderators: Tuan Pham Ngoc