我建立了一个多步骤联系表7问卷,该问卷使用条件逻辑插件来帮助某些部分。
我在下面添加了问题区域,它是表单的一部分,用户可以进行选择,并根据他们的选择提供其他四个部分之一。
一切正常。在发送的电子邮件的邮件正文中,此部分正确显示。其余3个组被隐藏,不显示。很好。
但是不幸的是,在使用其他WordPress插件生成的PDF中,我们测试了所有的组标签。
有什么方法可以改变条件逻辑的结构,还是有替代解决方案?
任何帮助或其他信息,请询问。
谢谢
联系表格7
<div>
<h3>My Choice - Step 4</h3>
</div>
<div>Select 'ONE' procedure [radio procedure use_label_element "Mesh Tape" "Colposuspension" "Natural Tissue Sling" "Urethra Bulking Agent Injection"]</div>
<div>
[group mesh-selected clear_on_hide]
Statement 1 [text mesh-mesh1 use_label_element placeholder"Reason Why"]
Statement 2 [text mesh-colp1 use_label_element placeholder"Why I'm not"]
Statement 3 [text mesh-sling1 use_label_element placeholder"Why I'm not"]
Statement 4 [text mesh-ureth1 use_label_element placeholder"Why I'm not"]
[/group]
[group colp-selected clear_on_hide]
Statement 1 [text colp-colp2 placeholder"Reason Why"]
Statement 2 [text colp-mesh2 placeholder"Why I'm not"]
Statement 3 [text colp-sling2 placeholder"Why I'm not"]
Statement 4 [text colp-ureth2 placeholder"Why I'm not"]
[/group]
[group sling-selected clear_on_hide]
Statement 1 [text sling-sling3 placeholder"Reason Why"]
Statement 2 [text sling-colp3 placeholder"Why I'm not"]
Statement 3 [text sling-mesh3 placeholder"Why I'm not"]
Statement 4 [text sling-ureth3 placeholder"Why I'm not"]
[/group]
[group ureth-selected clear_on_hide]
Statement 1 [text ureth-ureth4 placeholder"Reason Why I'm"]
Statement 2 [text ureth-sling4 placeholder"Why I'm not"]
Statement 3 [text ureth-colp4 placeholder"Why I'm not"]
Statement 4 [text ureth-mesh4 placeholder"Why I'm not"]
[/group]
</div>
条件逻辑
show [mesh-selected] if [procedure] equals "Mesh Tape"
show [colp-selected] if [procedure] equals "Colposuspension"
show [sling-selected] if [procedure] equals "Natural Tissue Sling"
show [ureth-selected] if [procedure] equals "Urethral Bulking Agent Injection"
PDF表单布局
MY CHOICE
---------
Chosen Procedure: [procedure][mesh-selected]
[mesh-mesh1]
[mesh-colp1]
[mesh-sling1]
[mesh-ureth1]
[/mesh-selected][colp-selected]
[colp-mesh2]
[colp-colp2]
[colp-sling2]
[colp-ureth2]
[/colp-selected][sling-selected]
[sling-mesh3]
[sling-colp3]
[sling-sling3]
[sling-ureth3]
[/sling-selected][ureth-selected]
[ureth-mesh4]
[ureth-colp4]
[ureth-sling4]
[ureth-ureth4]
[/ureth-selected]
PDF屏幕截图
显示在一个字段部分中输入的一些随机字符以及不幸显示的[group] [/ group]标签: