I have the same problem! Hopefully there will be a solution soon.
Do your options appear when they shouldn’t?
Hoffcamp – help! Need to get my RSVP done ASAP otherwise misus is going to kill me!
If it seems like the conditions are simply not doing anything, then you are most likely missing a call to wp_footer() in your theme. Check this first. This is the problem 90% of the time.
Otherwise post a link to the form. But please check for wp_footer() first!
Hi hoffcomp!
Yes, wp_footer() is in the footer.php (see below). I do have some custom php code that I wrote for a count down…
——————————————————————
<?php
/**
* The footer Template
*
* @package WordPress
* @subpackage minimatica
* @since Minimatica 1.0
*/
$day = 18 ; // Day of the countdown
$month = 2; // Month of the countdown
$year = 2012; // Year of the countdown
$hour = 16; // Hour of the day (east coast time)
$calculation = ((mktime ($hour,0,0,$month,$day,$year) – time(void))/3600);
$hours = (int)$calculation;
$days = (int)($hours/24);
?>
<footer id=”footer”>
<?php get_sidebar( ‘footer’ ); ?>
<nav id=”access” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary_nav’, ‘container_id’ => ‘primary-nav’, ‘container_class’ => ‘nav’, ‘fallback_cb’ => ‘minimatica_nav_menu’ ) ); ?>
</nav><!– #access –>
<nav>
<p><center> <?=$days?> days</span> until Our Wedding</center></p>
</nav>
</footer><!– #footer –>
</div><!– #wrapper –>
<?php wp_footer(); ?>
</body>
</html>
——————————————————————
Any other ideas?
Hi hoffcomp, actually i am using the simplies theme “Twenty Ten” which of course contains it.
Just for clear, i was trying to set the following basic condition:
“Only show elements if [list-1] is greater than 1 applies to [list-2]” but it didn’t work.
The conditions that were working for me: equals, does not equal,is empty, is not empty, all others weren’t.
I can use the contditions without it but this case i have to define a lot of conditions.
Any help would be appriciated.
(sorry for my English)
zdanhauser – you are da man! Didn’t think to try the other options!
I was able to create what I needed by using ‘equals’. ‘Is greater than’, etc don’t seem to work for me too :O(
FYI – Here is my ’round about way’ (aka lots of conditions) for a list that has four options (1,2,3 and 4):
——————————————————————
Only show elements if
Numbers …equals 2
Numbers …equals 3
Numbers …equals 4
Applies to:
…2nd Guest (Text field)
Only show elements if
Numbers …equals 3
Numbers …equals 4
Applies to:
…3rd Guest (Text field)
Only show elements if
Numbers …equals 4
Applies to:
…4th Guest (Text field)
——————————————————————
Hope this makes sense.
Thx. Obviously i could make this but i don’t like to avoid problems if can be able to solve them.
I have got a similar problem:
Only show elements if
Letters …equals “Tax”
Applies to:
… Tax No. (Text field)
No text field will appear.
This is a bug. I found the problem and it will be fixed in the next update.