OwlCyberSecurity - MANAGER
Edit File: admin-meta.js
jQuery(function ($) { // use $ for jQuery "use strict"; /* Meta Box hide / show */ $(document).ready(function() { if ($('#page_template').length) { var selected = $('#page_template option:selected').val(); //alert(selected); if (selected == 'wcp-fullpage-template.php') { $(document).find('#wcp_db_options').show(); } else { $(document).find('#wcp_db_options').hide(); } } }); /* On change Meta Box hide / show */ $(document).on('change', '#page_template', function() { var selected = $('#page_template option:selected').val(); //alert(selected); if (selected == 'wcp-fullpage-template.php') { $(document).find('#wcp_db_options').show(); } else { $(document).find('#wcp_db_options').hide(); } }); });