【发布时间】:2019-10-30 10:52:02
【问题描述】:
我想继续显示“感谢您与我们联系!我们会尽快与您联系。”提交表单后,在同一 Magnific 弹出窗口中的消息。在表单提交后的那一刻窗口关闭。我使用的代码:
<script>
jQuery(function ($) {
$('.open-popup-link').magnificPopup({
type: 'inline',
closeOnBgClick: false,
fixedContentPos: true,
closeOnContentClick: false
});
});
</script>
.white-popup {
position: relative;
background: #FFF;
padding: 20px;
width: auto;
max-width: 500px;
margin: 20px auto;
}
<div id="test-popups" class="white-popup mfp-hide">
Popup content
<?php echo do_shortcode('[gravityform id=4 title=false description=false]'); ?>
</div>
<a href="#test-popups" class="open-popup-link">Contact Us</a>
【问题讨论】:
标签: jquery wordpress gravity-forms-plugin