• Resolved hans80

    (@hans80)


    Hello How do I get Mrs. to appear first in front of Mr. in the dropdown selection?

    The page I need help with: [log in to see the link]

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

    (@faktorvier)

    Hi @hans80

    Currently this can only be done with a simple hook that you can add to the functions.php of your theme:

    add_filter('F4/WCSF/load_settings', function($settings) {
    	$settings['option_values'] = ['', 'mrs', 'mr'];
    	return $settings;
    });

    Hope that helps.

    Thread Starter hans80

    (@hans80)

    Thank you for me a good solution.
    Thank you for your support.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reverse checkout dropdown selection’ is closed to new replies.