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
<?php | |
function job_listing_activity_args() { | |
if ( ! bp_is_active( 'activity' ) ) { | |
return; | |
} | |
add_post_type_support( 'job_listing', 'buddypress-activity' ); | |
bp_activity_set_post_type_tracking_args( 'job_listing', array( |
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
<?php // DO NOT COPY THIS LINE | |
function sd_cfm_receipt_field( $payment ) { | |
?> | |
<tr> | |
<td><strong><?php _e( 'Custom Field', 'edd' ); ?>:</strong></td> | |
<td><?php echo get_post_meta( $payment->ID, 'custom_field', true ); ?></td> | |
</tr> | |
<?php |
OlderNewer