---
title: Customize the Full Search button options
slug: '3092'
canonical_url: https://docs.coveo.com/en/3092/
collection: coveo-for-salesforce
source_format: adoc
---
# Customize the Full Search button options
The `FullSearch` component is a button in the [Coveo Insight Panel Lightning Component](https://docs.coveo.com/en/1028/) that lets service agents access a Coveo-powered [Full Search page](https://docs.coveo.com/en/nbm90465/) inside the Salesforce console.
> **Important**
>
> If you implemented your Coveo Insight Panel Lightning Component before the release of [Coveo for Salesforce v4.6](https://docs.coveo.com/en/3236#july-2020-release-v4-6), [upgrade your existing Coveo Insight Panel Lightning Component to the new design](https://docs.coveo.com/en/3288/) to activate the new experience.
This article describes the available options based on your current implementation:
* [`FullSearchButton` options](#fullsearchbutton-options) (New design)

* [`FullSearch` options](#fullsearch-options) (Legacy)

## How to modify options
To modify the **Full Search** button options, you can either use the **UI View** (as shown below) or the **Code View** that's available through the [Coveo for Salesforce Interface Editor](https://docs.coveo.com/en/3081#different-ways-to-access-the-interface-editor).

> **Tip**
>
> In the **UI View**, click the cogwheel in the upper-left corner of the Interface Editor, and then select **FullSearch** to see the button options.
## `FullSearchButton` options
> **Available since**
>
> This feature was introduced in the July 2020 release of Coveo for Salesforce version [4.6](https://docs.coveo.com/en/3236#july-2020-release-v4-6).
This section lists the options that can be set for the `FullSearchButton` component.
### Specify the tooltip to display
You can specify the tooltip to display by modifying the following code in the **Code View**:
```html
```
Where you replace `` with the tooltip you want to display.
The default value is `Open search in a new tab`.
### Open the Full Search page in a subtab
You can determine whether to open the Full Search page in a subtab by modifying the following code in the **Code View**:
```html
```
The default value is `true`, meaning that the Full Search page opens in a new subtab by default.
Setting this value to `false` opens the Full Search page in the same tab as the Coveo Insight Panel Lighting Component.
### Specify the name of the component to open
You can specify the name of the component to open when a user clicks the **Full Search** button by modifying the following code in the **Code View**:
```html
```
The default value is `CoveoV2__FullSearch`.
## `FullSearch` options
This section lists the options that can be set for the legacy `FullSearch` component.
### Changing the button title
You can modify the button title by entering text in the **Title** section of the **UI View**, or by adding the following code in the **Code View**:
```html
```
Where you replace `` with a title of your choosing.
The default value is `Full Search`.
### Opening the Full Search page in the same tab as the Coveo Insight Panel Lightning Component
You can open the Full Search page in the same tab as the Coveo Insight Panel Lightning Component by clearing the **Open in subtab** checkbox in the **UI View**, or by adding the following code in the **Code View**:
```html
```
The default value is `true`.
### Making the button invisible
You can remove the button by clearing the **Visible** checkbox in the **UI View**, or by adding the following code in the **Code View**:
```html
```
The default value is `true`.
## Changing the default search hub value
The default search hub value of the Full Search page is `coveoFullSearch`.
To modify this value, perform the following steps:
> **Important**
>
> * Each search component should have a unique search hub value to let you report activity from each component separately.
>
> * You must set the [`fullSearchComponent`](https://docs.coveo.com/en/1109#fullsearchcomponent) option in your Coveo Insight Panel Lightning Component to the name of your new Full Search component (see [Modifying the Full Search component name](https://docs.coveo.com/en/1028#modify-the-full-search-component-name)).
. Log in to your Salesforce organization using an administrator account.
. [Open the Developer Console](https://help.salesforce.com/s/articleView?id=sf.code_dev_console_opening.htm&type=5).
. Create a new Lightning component using the following code sample (see [Create Aura Components in the Developer Console](https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/components_create_devconsole.htm)):
```xml
```
Where you replace `` with your new search hub value.