🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 08:19:07 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
jetpack
/
3rd-party
📍 /home/therahul/thedasstores.com/wp-content/plugins/jetpack/3rd-party
🔄 Refresh
✏️
Editing: buddypress.php
Writable
<?php /** * 3rd Party Integration for BuddyPress. * * @package automattic/jetpack. */ namespace Automattic\Jetpack\Third_Party; add_filter( 'bp_core_pre_avatar_handle_upload', __NAMESPACE__ . '\blobphoto' ); /** * Adds filters for skipping photon during pre_avatar_handle_upload. * * @param bool $bool Passthrough of filter's original content. No changes made. * * @return bool */ function blobphoto( $bool ) { add_filter( 'jetpack_photon_skip_image', '__return_true' ); return $bool; }
💾 Save Changes
❌ Cancel