JReviews logo Docs
Menu
Version

template_listings.detail_tabs:split-field-groups

Allows displaying field groups as different tabs when using the `_tabs` version of the listing detail template.

Filter
Templates
Since 3.9.0

You need to have a working knowledge of Hooks before you get started.

This filter only works if you are already using tabs in the listing detail page. Learn how to add tabs to the detail page.

Parameters

Name Type Description
$enabled parameter (bool) default is false
$listing parameter (array)

Boilerplate Code

Use the boilerplate code to start using the filter, and add your own logic to modify the first argument and return it.

Clickfwd\Hook\Filter::add('template_listings-detail_tabs-split-field-groups', function($enabled, $listing)
{
    // Uncomment line below to view available data passed into hook
    // fwd_dd($enabled, $listing);

    return $enabled;
});
Development & Support
Customizations are not included with support. We provide this information to make it easier for developers to extend the functionality. From time to time we may have some availability for custom work. Get in touch to see if there's an opportunity to work together.

Examples

Enable field group tabs separation for specific categories

template_listings.detail_tabs:split-field-groups
Clickfwd\Hook\Filter::add('template_listings.detail_tabs:split-field-groups', function($enabled, $listing) 
{
  // Category Ids
  $catIds = [1, 2, 3];
  
  return in_array($listing['Category']['cat_id'], $catIds);
});

Enable field group tabs separation for specific listing types

Clickfwd\Hook\Filter::add('template_listings.detail_tabs:split-field-groups', function($enabled, $listing) 
{
  // Category Ids
  $typeIds = [1, 2, 3];
  
  return in_array($listing['ListingType']['listing_type_id'], $typeIds);
});

Source Files

  • /views/themes/default/listings/detail_tabs.thtml