Photo Books &
Creative Editions

Portfolio and personal branding photography for models, artists and professionals, designed to present people with confidence and visual direction.
Loading...

why Hypnostudio?

Work that speaks before words do.
jQuery(function ($) { function updatePortfolioBanner() { const $filter = $('#portfolio-filter'); // Find the currently selected radio option const $selected = $filter.find('input[type="radio"]:checked'); // No selection / ALL selected const isAll = !$selected.length || $selected.val() === '' || $selected.data('value') === '' || $selected.closest('label').text().trim().toLowerCase() === 'all'; if (isAll) { $('#default-banner').show(); $('#banner-list').hide(); } else { $('#default-banner').hide(); $('#banner-list').show(); } } // Initial state updatePortfolioBanner(); // Radio filter click $(document).on( 'change', '#portfolio-filter input[type="radio"]', function () { setTimeout(updatePortfolioBanner, 300); } ); });