• This plugin has potential to replace the side dropdown menu that we use on individual product pages. We are currently using the one that comes with WooCommerce and we are not happy with changes they have made to it.

    Couple of questions. We see that we can rename the “Title”, is there a way we can rename “”select category”? Also is there a way to reorder how items are displayed? At least give choice for Ascending or Descending?

    Thank You,
    Ruth

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    You can replace — select category — with your custom text in the file:
    wp-content/plugins/product-category-dropdowns/view/frontend/templates/selector.php

    To change the sorting order replace two lines:

    
              if (x < y) return -1;
              if (x > y) return 1;
    

    with:

    
              if (x < y) return 1;
              if (x > y) return -1;
    

    in the file:
    wp-content/plugins/product-category-dropdowns/view/frontend/web/main.js

    Then refresh the browser cache.

    Stanislav

    Thread Starter meruth101

    (@meruth101)

    OK – Thank You.

    Ruth

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Way to Change Names’ is closed to new replies.