Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
wp-content
/
plugins
/
schema
/
includes
/
admin
/
meta
/
js
/
Filename :
schema.js
back
Copy
jQuery(function($) { // Reset //$("#schema_article").hide(); var schema_type = $("#_schema_type").val(); if ( schema_type == 'Article') $("#schema_article").show(); $('#_schema_type').on('change', function() { if ( this.value == 'Article') //.....................^....... { $("#schema_article").show(); } else { $("#schema_article").hide(); } }); // repeated post meta group / show hide main meta box $('#schema_post_meta_box').hide(); var post_meta_enabled = $("#_schema_post_meta_box_enabled").prop('checked'); if (post_meta_enabled) $('#schema_post_meta_box').show(); $('#_schema_post_meta_box_enabled').change(function(){ var checked = $(this).prop('checked'); if (checked) { $('#schema_post_meta_box').show(); } else { $('#schema_post_meta_box').hide(); } }); /* // repeated post meta group fields // first, hide all divs inside the repeatable row, which has the advanmced options $('.meta_box_repeatable_row div').hide(); // do toggle $('.meta_box_repeatable_row .toggle').toggle(function() { $('#' + this.id + '_wrap').show(); $(this).html('Less <span class="dashicons dashicons-arrow-up-alt2"></span>'); // Less options }, function() { $('#' + this.id + '_wrap').hide(); $(this).html('Advanced <span class="dashicons dashicons-arrow-down-alt2"></span>'); // Advanced options //$(this).html(this.id); }); */ });