我在WordPress网站上使用了重力表格。我选择了状态和邮政编码的下拉列表。我还检查了增强型用户界面复选框,但是,我的下拉字段中没有为移动设备启用它。
是否有选择或重力形式的选项可以在移动设备上选择。
您的回复非常感谢。
答案 0 :(得分:0)
一年后,https://stackoverflow.com/a/41741782/390946
为您提供了一种可能的解决方案我今天遇到了这个问题。我使用了上面提供的解决方案,并在主题的init
中为functions.php
添加了一个额外的动作挂钩,以取消注册所选的重力形式并添加自定义脚本。
示例:
/**
* Fix for chose not working on mobile devices.
*/
function [theme alias]_fix_gform_chosen_mobile() {
wp_deregister_script('gform_chosen');
wp_register_script('gform_chosen', path_join(get_stylesheet_directory_uri(), 'js/chosen.jquery.fix.min.js'), ['jquery'], '1.10.0-fix');
}
add_action('init', '[theme alias]_fix_gform_chosen_mobile', 11);