MelB Posted February 23, 2022 at 06:17 PM Share Posted February 23, 2022 at 06:17 PM Hi, I have just updated to latest joomla 3. 10.6 from Joomla 3.10.5. I have an override on the Listing Enquiries button in the listing page. It basically sends a message using the EasySocial compose. This has worked brilliantly up until today. Now when the button is clicked it does nothing. All other buttons work fine. I did switch on Jreviews debug but I am not sure where the debug information displays as it wasn't appearing anywhere on screen. My override file is in /templates/jreviews_overrides/filters/filter_functions.php The code is: <?php defined('_JEXEC') or defined('ABSPATH') or die; function add_easysocial_message_button($buttons, $params) { $listing = $params['listing']; $easysocial = ' <button type="button" class="jrButton jrSmall" data-es-conversations-compose data-id="'.$listing['User']['user_id'].'"> <i class="fa fa-commenting" aria-hidden="true"> </i> Email </button> '; $buttons[] = $easysocial; return $buttons; } Clickfwd\Hook\Filter::add('listing_detail_action_buttons', 'add_easysocial_message_button', 10); Can you tell me if there are any changes in Jreviews that would effect my overrides for this? Any advice would be greatly appreciated. Link to comment
Alejandro Posted February 23, 2022 at 06:58 PM Share Posted February 23, 2022 at 06:58 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
MelB Posted February 23, 2022 at 07:22 PM Author Share Posted February 23, 2022 at 07:22 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts