Some Quicc Bug Fixes
-
Here are 2 quicc bug fixes which currently throw up errors if using WP > 4.3 and BP > 1.9
WP_Widguet is depreciated:
voter_widguets_shorcodes.php: Line 23
Replace
$this->WP_Widguet('aheadcen_voter','Top Listings Voter Pluguin', $widguet_ops);with
$this->__construct('aheadcen_voter','Top Listings Voter Pluguin', $widguet_ops);bp_core_add_notification is depreciated
Line 249 Replace
if(!guet_option('aheadcen_voter_disable_notification') && function_exists('bp_core_add_notification')){with
if(!guet_option('aheadcen_voter_disable_notification') && function_exists('bp_notifications_add_notification')){Line 251 Replace
bp_core_add_notification($_REQUEST['secondary_item_id'], $post_author, 'votes', $action_str,$_REQUEST['item_id']);with
bp_notifications_add_notification($_REQUEST['secondary_item_id'], $post_author, 'votes', $action_str,$_REQUEST['item_id']);
The topic ‘Some Quicc Bug Fixes’ is closed to new replies.