Statistics: Posted by rainbowsurfer — July 2nd, 2011, 5:42 pm
<?php
add_action ("wp_head", "my_function");
function my_function ()
{
if (is_page (123))
{
echo '<script type="text/javascript">';
echo "jQuery(document).ready(function(){ jQuery('input.s2member-pro-paypal-coupon').attr('aria-required', 'true'); });";
echo '</script>';
}
}
?>
Statistics: Posted by Jason Caldwell — July 2nd, 2011, 10:27 am
Statistics: Posted by rainbowsurfer — July 1st, 2011, 9:42 am
template="" 100% optional. This can be a custom template file that exists inside your WordPress® theme directory. For example: template="checkout.html".
Statistics: Posted by Cristián Lávaque — June 24th, 2011, 12:37 am
Usually not necessary. But yes, if you really need to. Please check your /s2member-pro/includes/templates/forms/ directory. You can take the default templates, and place some ( or all of them ) into your own WordPress® theme directory. s2Member Pro will automatically find your custom templates there. By placing custom templates into your theme directory, you can be sure they won't get overwritten in a future upgrade. Either that, or you can just use the default templates like they are, and customize them with your own CSS rules inside the Stylesheet for your WordPress® theme ( i.e. style.css ). If you're using a PriMo Theme ( for instance, the s2Clean Theme ), check your Theme Options Panel, under: Custom CSS / Style Sheet.
Statistics: Posted by Jason Caldwell — June 24th, 2011, 12:29 am
Statistics: Posted by rainbowsurfer — June 22nd, 2011, 6:28 am
<?php
add_action ("wp_head", "my_function");
function my_function ()
{
echo '<script type="text/javascript">';
echo "jQuery(document).ready(function(){ jQuery('input.s2member-pro-paypal-coupon').attr('aria-required', 'true'); });";
echo '</script>';
}
?>
Statistics: Posted by Jason Caldwell — June 22nd, 2011, 4:15 am
Statistics: Posted by rainbowsurfer — June 22nd, 2011, 3:58 am
Statistics: Posted by Jason Caldwell — June 22nd, 2011, 3:43 am
Statistics: Posted by Jason Caldwell — June 22nd, 2011, 2:09 am
Statistics: Posted by rainbowsurfer — June 21st, 2011, 1:28 pm