Title: Modify the &#8220;All&#8221; button
Last modified: November 3, 2020

---

# Modify the “All” button

 *  Resolved [la krueger](https://wordpress.org/support/users/lakrueger/)
 * (@lakrueger)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/modify-the-all-button/)
 * Hello,
 * How can I modify the “All” button ? My website is in french and it would be better
   if I could change it for a french word.
 * Thanks
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmodify-the-all-button%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 14 replies - 1 through 14 (of 14 total)

 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-13620090)
 * Hi [@lakrueger](https://wordpress.org/support/users/lakrueger/),
 * Thanks for reaching out to us.
 * You can easily find this and add a translation for these with any translation
   plugins such as Loco Translate (Free/Paid), WPML (Paid), etc. Install any one
   of these plugins and find the string mentioned above and add the translation.
   You can refer to those plugins documentation[2] for more details. For your purpose,
   we recommend using Loco translate[1]. You can find many helpful guides[3] for
   adding translations for plugins with Loco translate.
 * Note: Please never choose the Author location when you add a new language using
   the Loco translate plugin for Team Pro and also never edit the template (original
   file).
 * If you don’t want to install a plugin for this or you only need to translate ‘
   All’ text. Then, you can use the below code for doing the same.
 *     ```
       function awsm_team_pro_custom_translation( $translation, $text ) {
       	if ( $text === 'All' ) {
       		$translation = 'Tous';
       	}
       	return $translation;
       }
       add_filter( 'gettext_awsm-team-pro', 'awsm_team_pro_custom_translation', 10, 2 );
       ```
   
 * External Resources:
    1. [https://wordpress.org/plugins/loco-translate/](https://wordpress.org/plugins/loco-translate/)
    2. [https://localise.biz/wordpress/plugin/beginners](https://localise.biz/wordpress/plugin/beginners)
    3. [https://zemez.io/wordpress/support/how-to/manage-plugins-translations-using-loco-translate-plugin-2/](https://zemez.io/wordpress/support/how-to/manage-plugins-translations-using-loco-translate-plugin-2/)
    4. [https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/](https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/)
 * Regards,
    Vidya K V
 *  [verenacorsini](https://wordpress.org/support/users/verenacorsini/)
 * (@verenacorsini)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-13691836)
 * Hello,
 * is there also a code for hide ‘all’?
    That would be great!
 * Thanks in advance,
    Verena
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-13697538)
 * Hi [@verenacorsini](https://wordpress.org/support/users/verenacorsini/),
 * Please copy-paste the below CSS in the Theme Customizer.
 *     ```
       .awsm-grid-wrapper .awsm-scale-anm.awsm-all {
       display: none;
       }
       .awsm-grid-wrapper .awsm-scale-anm.awsm-10 {
       display: block;
       }
       .awsm-filter-btn:first-child {
       display: none;
       }
       .awsm-filter-btn[data-info="#all"].awsm-active-filter + span::after {
       width: 100%;
       left: 0;
       opacity: 1;
       } 
       ```
   
 * Regards,
    Vidya K V
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14156653)
 * Hi [@vidyakv](https://wordpress.org/support/users/vidyakv/)
 * The line in your code below stops my team members displaying entirely.
 * .awsm-grid-wrapper .awsm-scale-anm.awsm-all {
    display: none; }
 * The other three lines successfully removes the “all” tab but still displays all
   the members from all filters as the default when loading the page.
 * Is there a way to remove the “all” and also have it so that the first filter 
   is the default or no filter at all shows when a user loads the page.
 * Thanks,
    Rob
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14164723)
 * Hi [@rob24n](https://wordpress.org/support/users/rob24n/),
 * Could you please share with us the URL of your team page?
 * Regards,
    Vidya K V
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14166144)
 * [http://24nriyadh.com/juniors/](http://24nriyadh.com/juniors/)
 * [@vidyakv](https://wordpress.org/support/users/vidyakv/)
 * I was planning on using the plugin to display 8 different programmes under seperate
   tabs using the list view. So I just need to remove the all tab.
    -  This reply was modified 5 years, 2 months ago by [rob24n](https://wordpress.org/support/users/rob24n/).
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14166446)
 * Hi [@rob24n](https://wordpress.org/support/users/rob24n/),
 * Please replace the CSS you had used to hide the ‘ALL’ button with the given below
   CSS.
 *     ```
       .awsm-grid-wrapper .awsm-scale-anm.awsm-all {
       display: none;
       }
       .awsm-grid-wrapper .awsm-scale-anm.awsm-61 {
       display: block;
       }
       .awsm-filter-btn:first-child {
       display: none;
       }
       .awsm-filter-btn[data-info="#all"].awsm-active-filter + span::after {
       width: 100%;
       left: 0;
       opacity: 1;
       }
       ```
   
 * Regards,
    Vidya K V
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14172659)
 * Hi [@vidyakv](https://wordpress.org/support/users/vidyakv/)
 * When I enter that code it successfully does what I need for my list view however
   it unfortunately also removes my teams elsewhere on the site that use your drawer
   view.
 * Please help.
    -  This reply was modified 5 years, 2 months ago by [rob24n](https://wordpress.org/support/users/rob24n/).
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14183554)
 * Hi [@rob24n](https://wordpress.org/support/users/rob24n/),
 * You have to use the team ID `#awsm-team-4211` before the selector in the CSS 
   line.
    You can use the below CSS snippet
 *     ```
       #awsm-team-4211 .awsm-grid-wrapper .awsm-scale-anm.awsm-all {
       display: none;
       }
       #awsm-team-4211 .awsm-grid-wrapper .awsm-scale-anm.awsm-61 {
       display: block;
       }
       #awsm-team-4211 .awsm-filter-btn:first-child {
       display: none;
       }
       #awsm-team-4211 .awsm-filter-btn[data-info="#all"].awsm-active-filter + span::after {
       width: 100%;
       left: 0;
       opacity: 1;
       }
       ```
   
 * Regards,
    Vidya K V
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14250459)
 * Hi Vidya,
 * It still shows the full list of team members when the page loads.
 * Thanks for your help so far.
    -  This reply was modified 5 years, 2 months ago by [rob24n](https://wordpress.org/support/users/rob24n/).
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14321027)
 * Hi [@vidyakv](https://wordpress.org/support/users/vidyakv/)
 * Please advise
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14321906)
 * Hi [@rob24n](https://wordpress.org/support/users/rob24n/),
 * The URL is password protected. You can share it privately by creating a support
   ticket on our [website](https://support.awsm.in/submit-ticket/).
 * Regards,
    Vidya K V
 *  [rob24n](https://wordpress.org/support/users/rob24n/)
 * (@rob24n)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14324367)
 * [@vidyakv](https://wordpress.org/support/users/vidyakv/) Password = juniors
 *  Plugin Support [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * (@vidyakv)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14326894)
 * Hi [@rob24n](https://wordpress.org/support/users/rob24n/),
 * Please replace all the CSS with the given below one.
 *     ```
       #awsm-team-4211.awsm-grid-wrapper .awsm-all {
       display: none;
       }
       #awsm-team-4211.awsm-grid-wrapper .awsm-61 {
       display: block;
       }
       #awsm-team-4211 .awsm-filter-btn:first-child {
       display: none;
       }
       #awsm-team-4211 .awsm-filter-btn[data-info="#all"].awsm-active-filter + span::after {
       width: 100%;
       left: 0;
       opacity: 1;
       }
       ```
   
 * Regards,
    Vidya K V

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘Modify the “All” button’ is closed to new replies.

 * ![](https://ps.w.org/awsm-team/assets/icon-256x256.png?rev=1934091)
 * [AWSM Team - Team Showcase Plugin](https://wordpress.org/plugins/awsm-team/)
 * [Support Threads](https://wordpress.org/support/plugin/awsm-team/)
 * [Active Topics](https://wordpress.org/support/plugin/awsm-team/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/awsm-team/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/awsm-team/reviews/)

## Tags

 * [all](https://wordpress.org/support/topic-tag/all/)
 * [code](https://wordpress.org/support/topic-tag/code/)
 * [hide](https://wordpress.org/support/topic-tag/hide/)
 * [pro](https://wordpress.org/support/topic-tag/pro/)

 * 14 replies
 * 4 participants
 * Last reply from: [vidyakv](https://wordpress.org/support/users/vidyakv/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/modify-the-all-button/#post-14326894)
 * Status: resolved