States Sort

  • Posts: 197
  • Thank you received: 13
2 years 8 months ago #339746

-- HikaShop version -- : 4.5.0
-- Joomla version -- : 4.1.0
-- PHP version -- : 7.4

Hi.
In checkout address section, States dripdown is showing states in alphabetical order.
I want states to be displayed with the ordering that I entered them in admin.

How can I do that ?

Please Log in or Create an account to join the conversation.

  • Posts: 82863
  • Thank you received: 13372
  • MODERATOR
2 years 8 months ago #339761

Hi,

Supposing that you're talking about only the states of a particular country, what you can do is this:
If you edit your states via the System>Zones menu, you can see the fields "name" and "name in english"
The sorting is based on the "name in english" field. and if that field contains a number, it won't be displayed and only the "name" will appear in the dropdown. So the solution is to enter the position number of each state in the "name in english" field and the name you want to appear in the dropdown in the "name" field.

Please Log in or Create an account to join the conversation.

  • Posts: 197
  • Thank you received: 13
2 years 8 months ago #339870

Its not just about a specific country ... I want to change the sort for all countries as I entered in admin

I tried to edit the name in english but it is showing in dropdown

Please Log in or Create an account to join the conversation.

  • Posts: 82863
  • Thank you received: 13372
  • MODERATOR
2 years 8 months ago #339872

Hi,

Well, I don't have a nice alternative.
What I can propose is to directly change the line:
$query .= ' WHERE '.implode(' AND ',$filters).' ORDER BY a.zone_name_english ASC';
in the file administrator/components/com_hikashop/types/country.php
to load the zones differently. For example, you could change it to:
$query .= ' WHERE '.implode(' AND ',$filters).' ORDER BY a.zone_id ASC';
which would sort the states (and countries) in the order they were added to the database.

Please Log in or Create an account to join the conversation.

  • Posts: 197
  • Thank you received: 13
2 years 8 months ago #339878

thank you

Please Log in or Create an account to join the conversation.

Time to create page: 0.057 seconds
Powered by Kunena Forum