Last active
February 26, 2025 12:21
-
-
Save propertyhive/3679b558998c6b767fcd33ee3e53d866 to your computer and use it in GitHub Desktop.
Add fees in lightbox as new action button
This file contains 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( 'propertyhive_single_property_actions', 'add_fees_action' ); | |
function add_fees_action( $actions ) | |
{ | |
global $property; | |
if ( $property->department == 'residential-lettings' ) | |
{ | |
$fees = nl2br(get_option('propertyhive_lettings_fees', '')); | |
if (!empty($fees)) | |
{ | |
$actions[] = array( | |
'href' => '#fees', | |
'label' => __( 'Fees Information', 'propertyhive' ), | |
'class' => 'action-fees', | |
'attributes' => array( | |
'data-fancybox' => 'floorplans' | |
) | |
); | |
echo '<div id="fees" style="display:none; max-width:500px;"><h3>' . __( 'Fees Information', 'propertyhive' ) . '</h3>' . $fees . '</div>'; | |
} | |
} | |
return $actions; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment