重力形式使用cookie来隐藏形式div

时间:2014-03-31 20:55:32

标签: forms cookies show-hide gravity-forms-plugin

Gravity表单可以在用户提交表单时创建cookie。我想用它来隐藏gform_wrapper div并用一条简单的消息替换它#34;你已经填写了表格。"

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;
  })

非常感谢任何帮助。

0 个答案:

没有答案