mrdouble08
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugins: Form Manager] Conditions not workingzdanhauser – 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.
Forum: Plugins
In reply to: [Plugins: Form Manager] Conditions not workingHi 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?
Forum: Plugins
In reply to: [Plugins: Form Manager] Conditions not workingDo your options appear when they shouldn’t?
Hoffcamp – help! Need to get my RSVP done ASAP otherwise misus is going to kill me!
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Conditions don't workmy conditions aren’t working either – maybe it could be a plugin clash?
same here! tried changing
‘posts_per_page’ => 4,
to
‘posts_per_page’ => 1,
but that didn’t work