template_listings.detail_tabs:split-field-groups
Allows displaying field groups as different tabs when using the `_tabs` version of the listing detail template.
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;
});
Examples
- Enable field group tabs separation for specific categories
- Enable field group tabs separation for specific listing types
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