• Love this plugin!

    How can we export ASL settings and save as a file, then import those settings to another WordPress site? It would save a lot of time for admins if they have extensive setting changes/preference. If this feature does not exists please consider it for a future version update.

    Sorry if this question was answered elsewhere. I looked but could not find any info about this topic.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Well, the settings are stored in the wp_options table, unfortunately there is no feature to export/import them from within the plugin.

    Probably the easiest way is via copying the rows from one database to the other. In the wp_options table, search for options with keys starting with “asl_”:

    SELECT *
    FROM wp_options
    WHERE option_name LIKE 'asl_%'
    LIMIT 50

    Then all the Ajax Search Lite options should come up. You can export these rows and import them to the other databse.

    I hope this helps!

    All the best,
    Ernest

Viewing 1 replies (of 1 total)

The topic ‘How to export/import ASL settings?’ is closed to new replies.