Created
May 21, 2025 07:57
-
-
Save LaxusCroco/575fb4736aebef65b322bc671e6ba62c to your computer and use it in GitHub Desktop.
Revisions
-
LaxusCroco created this gist
May 21, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ <?php function show_units_count_ac( $column, $post_id ) { if ( ! is_plugin_active( 'jet-booking/jet-booking.php' ) ) { return ''; } $units = jet_abaf()->db->get_apartment_units( $post_id ); $units_count = ! empty( $units ) ? count( $units ) : 0; return $units_count; } add_filter( 'jet-engine/post-type/predifined-columns-cb-for-js', function( $column_callbacks ) { $column_callbacks[ 'show_units_count_ac' ] = array( 'description' => __( 'Show units count', 'jet-engine' ), ); return $column_callbacks; } );