1
I need to adapt a checkbox plugin Contact Form 7 wordpress with Pipes, what I’m doing:
Man shortcode on the form:
[checkbox checkbox-579 "10 cm" "15 cm" "20 cm" "30 cm"]
And I must result:
...
<input type="checkbox" name="checkbox-579[]" value="10 cm">
<span class="wpcf7-list-item-label">10 cm</span>
...
I want you to have a number on checkbox and one for the span
, tried something like:
[checkbox checkbox-579 "10 cm|3000" "15 cm|3017" "20 cm|2362" "30 cm|2379"]
But the result hasn’t changed. I need it to stay that way:
...
<input type="checkbox" name="checkbox-579[]" value="3000">
<span class="wpcf7-list-item-label">10 cm</span>
...
Is there any way to do it?