/home/techb158/balacoffee.com/wp-content/plugins/wpforms/src/Admin/Education/Builder
NameSizeModeActions
Captcha.php53800644editdlrm
Fields.php7830644editdlrm
Geolocation.php39000644editdlrm
Panel.php12760644editdlrm
Payments.php15230644editdlrm
Providers.php14320644editdlrm
Settings.php12340644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wpforms/src/Admin/Education/Builder/Providers.php (1432B)
filter_not_allowed_addons( 'wpforms_providers_panel_sidebar' ); } /** * Get addons for the Marketing panel. * * @since 1.7.7.2 */ protected function get_addons() { $addons = parent::get_addons(); /** * Google Sheets uses Providers API. All providers are automatically * added to the Marketing tab in the builder. We don't need the addon * on the Marketing tab because the addon is already added to * the builder's Settings tab. */ foreach ( $addons as $key => $addon ) { if ( isset( $addon['slug'] ) && $addon['slug'] === 'wpforms-google-sheets' ) { unset( $addons[ $key ] ); break; } } return $addons; } }