Allows displaying field groups as different tabs when using the _tabs
version of the listing detail template.
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
$enabled
$listing
You need to have a working knowledge of Hooks before you get started.
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
// For JReviews 3.x and earlier use dd instead of fwd_dd
// 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
-
/views/themes/default/listings/detail_tabs.thtml