Ant Posted December 24, 2018 at 12:30 PM Share Posted December 24, 2018 at 12:30 PM (edited) Create templates/jreviews_overrides/filters/filter_functions.php and in it put the following code <?php defined('MVC_FRAMEWORK') or die; /* Add Favorite button to list page */ function add_favorite_button_list_page($buttons, $params) { $listing = $params['listing']; $listingHelper = ClassRegistry::getClass('ListingHelperHelper'); ob_start(); $listingHelper->favorite($listing); $favoriteButton = ob_get_clean(); $buttons['favorite'] = $favoriteButton; return $buttons; } Clickfwd\Hook\Filter::add('listing_list_action_buttons', 'add_favorite_button_list_page', 10); Hope someone finds this useful. More filters can be found at https://docs.jreviews.com/?title=JReviews:Developers_Filters Edited April 5, 2019 at 11:45 AM by Alejandro Updated with simpler code Alejandro and Dennis T. 1 1 Link to comment
Alejandro Posted December 24, 2018 at 03:12 PM Share Posted December 24, 2018 at 03:12 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Ant Posted December 26, 2018 at 12:59 PM Author Share Posted December 26, 2018 at 12:59 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Ant Posted January 16, 2019 at 01:46 PM Author Share Posted January 16, 2019 at 01:46 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. n00bster 1 Link to comment
Alejandro Posted April 5, 2019 at 11:47 AM Share Posted April 5, 2019 at 11:47 AM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Ant Posted April 11, 2019 at 10:26 PM Author Share Posted April 11, 2019 at 10:26 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
JoshLewis Posted December 16, 2019 at 07:54 AM Share Posted December 16, 2019 at 07:54 AM (edited) This section is only visible with a valid subscription. If you have a valid subscription, please login. Edited December 16, 2019 at 07:55 AM by JoshLewis Link to comment
Jean Posted February 5, 2020 at 06:20 PM Share Posted February 5, 2020 at 06:20 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Alejandro Posted February 5, 2020 at 07:02 PM Share Posted February 5, 2020 at 07:02 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
JoshLewis Posted February 5, 2020 at 07:47 PM Share Posted February 5, 2020 at 07:47 PM (edited) This section is only visible with a valid subscription. If you have a valid subscription, please login. Edited February 5, 2020 at 07:47 PM by JoshLewis Link to comment
Jean Posted February 5, 2020 at 08:43 PM Share Posted February 5, 2020 at 08:43 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Alejandro Posted February 5, 2020 at 09:51 PM Share Posted February 5, 2020 at 09:51 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts