Solved

How to delete some Sort by: options in Sense Theme

incognitomode
Excursionist
16 0 6

How to remove few of the sorting options 

I want to remove Alphabetically & Date Sort options from dropdown

 

Website link- https://theactivestoryclothing.com/collections/track-pants

 

active-story.png

Accepted Solution (1)

AvadaCommerce
Shopify Partner
3879 839 955

This is an accepted solution.

Hi @incognitomode ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Find file theme.liquid->paste below code at the before </body>:

<script>
      var selectobject = document.getElementById("SortBy").querySelectorAll('option');
      selectobject.forEach(function(e,i){
        if (i == 2 || i == 3 || i == 6 || i ==7)
          e.remove();
      })
</script>

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 2 (2)

AvadaCommerce
Shopify Partner
3879 839 955

This is an accepted solution.

Hi @incognitomode ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Find file theme.liquid->paste below code at the before </body>:

<script>
      var selectobject = document.getElementById("SortBy").querySelectorAll('option');
      selectobject.forEach(function(e,i){
        if (i == 2 || i == 3 || i == 6 || i ==7)
          e.remove();
      })
</script>

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
incognitomode
Excursionist
16 0 6

Thanks a ton