wordpress 选择的重力形式在移动终端上不起作用

bd1hkmkf  于 2023-03-01  发布在  WordPress
关注(0)|答案(2)|浏览(171)

我在我的WordPress站点上使用了重力形式。我选择了州和邮政编码下拉列表。我还选中了增强的用户界面复选框,但,它没有启用我的移动终端下拉字段上选择。
screensoot of drop-down field
是否有选择或重力形式的任何选项,以启用移动终端上的选择。
你的React真的很感谢。

nhaq1z21

nhaq1z211#

一年后,有一个可能的解决方案https://stackoverflow.com/a/41741782/390946
我今天遇到了这个问题,我使用了上面提供的解决方案,并在主题的functions.php中为init添加了一个额外的action hook,以注销所选的重力形式并添加自定义脚本。
示例:

/**
 * 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);
nnsrf1az

nnsrf1az2#

解决方案相同,但已更新以修复语法问题。

/* Fix for chosen 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);

相关问题