/home/techb158/balacoffee.com/wp-content/plugins/wpforms/src/Admin/Education/Builder
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;
}
}