Gravity 表单可以在用户提交表单时创建一个 cookie。我想用它来隐藏 gform_wrapper div 并将其替换为简单的消息“您已经填写了表格”。
add_action( 'gform_after_submission_1', 'set_form_1_complete_cookie' );
这是我想做的一个版本,它使用 Jquery-cookie 我独立测试了它,它工作正常,但我不知道如何用我的表单实现这样的东西。
// when clicked on “X” icon do something
$('.close').click(function() {
// check that “X” icon was not cliked before (hidden)
if (!$('.change-message--on-click').is('hide--first')) {
$('.change-message--on-click').removeClass('hide--second');
$('.change-message--on-click').addClass('hide--first');
// add cookie setting that user has clicked
$.cookie('hide-after-click', 'yes', {expires: 7 });
}
return false;
})
任何帮助将不胜感激。