Documentation

How to order the domain list (standard version only)

These instructions only applies to My Domain List Standard plugin.

Change Domain list order in Admin Settings

The default domain order in the My Domain List -> Settings is alphabetical order.

If you want to order the list of domains other than alphabetically, you have the option to modify the code. It is simple.

The code supports ordering the domain list by the following:

  • Alphabetical (default)
  • By Domain Price
  • By Domain Created date
  • By Domain Expiration date
  • By Number of Offers received
  • By Domain owner’s name
  • By Domain registrar

Follow these steps to change the domain list order:

  • In WordPress Admin, go to Plugins -> Installed Plugins
  • Click on Edit under My Domain List plugin
  • Click on my-domain-list/my-domain-list-admin.php file on the right menu
  • Search for the following code:
    order by A.name
  • Change the ‘A.name’ text for one of the options specified below:
    • A.price
    • created
    • expires
    • A.updated_at
    • ‘offer_count’
    • owner
    • registrar

Change Domain List order viewed by users

The default domain order displayed on the shortcode table is alphabetical order.

If you want to order the list of domains other than alphabetically, you have the option to modify the code. It is simple.

The code supports ordering the domain list by the following:

  • Alphabetical (default)
  • By Domain owner
  • By Domain registrar
  • By Domain extension
  • By Domain expiration date
  • By Domain price
  • By Domain created date
  • By Domain changed date

Follow these steps to change the domain list order:

  • In WordPress Admin, go to Plugins -> Installed Plugins
  • Click on Edit under My Domain List plugin
  • Click on my-domain-list/my-domain-list-user-shortcode.php file on the right menu
  • Search for the following code:
    order by name
  • Change the ‘name’ text for one of the options specified below:
    • name
    • owner
    • registrar
    • extension
    • expires
    • price
    • created
    • changed