File "buddypress.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/buddypress.php
File size: 1.22 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

defined('ABSPATH') || exit;
if (class_exists('BuddyPress')) {
    if (function_exists('bp_is_user_profile')) {
        function rocket_deactivate_lazyload_on_buddypress_profil_pages($run_filter)
        {
            if (bp_is_user_profile()) {
                return false;
            }
            return $run_filter;
        }
        add_filter('do_rocket_lazyload', 'rocket_deactivate_lazyload_on_buddypress_profil_pages');
        add_filter('do_rocket_lazyload_iframes', 'rocket_deactivate_lazyload_on_buddypress_profil_pages');
    }
    if (function_exists('bp_is_group_creation_step') && function_exists('bp_is_group_admin_screen')) {
        function rocket_deactivate_lazyload_on_buddypress_group_pages($run_filter)
        {
            if (bp_is_group_creation_step('group-avatar') || bp_is_group_creation_step('group-cover-image') || bp_is_group_admin_screen('group-avatar') || bp_is_group_admin_screen('group-cover-image')) {
                return false;
            }
            return $run_filter;
        }
        add_filter('do_rocket_lazyload', 'rocket_deactivate_lazyload_on_buddypress_group_pages');
        add_filter('do_rocket_lazyload_iframes', 'rocket_deactivate_lazyload_on_buddypress_group_pages');
    }
}