This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="voting-form" style="display:none"> | |
<?php echo do_shortcode( '[gravityform id="6" title="false" description="false" ajax="true"]' ) ?> | |
</div> | |
<a href="#voting-form" class="fancybox button">Vote Now</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'job_manager_application_email_subject', 'custom_job_manager_application_email_subject', 10, 2 ); | |
// This is your hooked in function. Note: the $post variable is only available after v1.11.2 | |
function custom_job_manager_application_email_subject( $subject, $post ) { | |
// By default, $subject will contain: Job Application via "X" listing on X. Change that below | |
$subject = 'New subject'; | |
// Return the new subject | |
return $subject; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sub, sup { | |
/* Specified in % so that the sup/sup is the | |
right size relative to the surrounding text */ | |
font-size: 75%; | |
/* Zero out the line-height so that it doesn't | |
interfere with the positioning that follows */ | |
line-height: 0; | |
/* Where the magic happens: makes all browsers position |