Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active February 26, 2025 12:21
Show Gist options
  • Save propertyhive/3679b558998c6b767fcd33ee3e53d866 to your computer and use it in GitHub Desktop.
Save propertyhive/3679b558998c6b767fcd33ee3e53d866 to your computer and use it in GitHub Desktop.
Add fees in lightbox as new action button
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