Well I was looking for the same thing, and thought this might help other people out.
It may not be the most cleat of code but it works.
First I have a form with 5 things to pick from, when the first three are picked I want box 1 to show and when the last two are picked I want box two to show.
So I made two divs that are displayed none in the norm and added in the needed text boxes. ??
So now they are hidden
Then I added this code.
$(function() {
$.viewMap = {
‘Event Planners’ : $(‘#thirtyoff’), ‘Videographer’ : $(‘#thirtyoff’), ‘Photographer’ : $(‘#thirtyoff’),
‘Teachers’ : $(‘#tenoff’), ‘Union Workers’ : $(‘#tenoff’)
};
$(‘#AreYouA’).change(function() {
// hide all
$.each($.viewMap, function() { this.hide(); });
// show current
$.viewMap[$(this).val()].show();
});
});
——–
Event Planners, Videographer,Photographer are the values for the first three “#thirtyoff” is the id for the box that is displayed none, that I want to show when one is picked
Teachers,Union Workers are the last two values in the drop down and “#tenoff” is the id of the box that is displayed none that I want to show when they are picked.
———
Well I hope this helps someone else, and I am with Nathan, I like supporting devs but $199 is a little hight of a price. And yes I know its not $199 for one site, but I pick a form and stick with it, so all the sites I build are the same and it makes support easy.
But if you ever make an addon that will make Contact Form 7 better and it cost, I will pick it up.
To me, its a matter of price and learning a all now contact form when 90% of the time this ones does a great job.