403Webshell
Server IP : 172.67.147.195  /  Your IP : 216.73.216.142
Web Server : Apache/2
System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User : mienphi ( 1014)
PHP Version : 8.2.14
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/mienphi/public_html/wp-content/themes/eduma_OLD/assets/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/mienphi/public_html/wp-content/themes/eduma_OLD/assets/js/admin-custom-script.js
jQuery(function($) {
	$(document).ready(function() {
		thim_custom_admin_select();

		thim_eduma_install_demo();

		thim_eduma_edit_term();

		thim_vc_template_ui.init();
	});

	var thim_vc_template_ui = window.thim_vc_template_ui = {

		init: function() {
			this.vc_filter_template();
			this.vc_effect_add_template();
		},

		/**
		 * Filter category
		 */
		vc_filter_template: function() {
			$('.cat-filter').on('click', 'li', function(e) {
				var catslug = $(this).attr('data-filter');
				$('.cat-filter li').removeClass('active');
				$(this).addClass('active');
				$('[data-tab=default_templates]').find('.vc_ui-template').hide();
				$('[data-tab=default_templates]').find('.' + catslug).show();
			});
		},

		/**
		 * Add loading when click on add template button.
		 */
		vc_effect_add_template: function() {
			$('.vc_ui-list-bar-item-actions').on('click', function() {
				$(this).addClass('adding');
			});
			$(document).ajaxComplete(function() {
				$('.vc_ui-list-bar-item-actions').removeClass('adding');
			});
		},

	};

	function thim_custom_admin_select() {
		$('#customize-control-thim_config_logo_mobile select').on('change', function() {
			if ($(this).val() == 'custom_logo') {
				$('#customize-control-thim_logo_mobile').show();
				$('#customize-control-thim_sticky_logo_mobile').show();
			} else {
				$('#customize-control-thim_logo_mobile').hide();
				$('#customize-control-thim_sticky_logo_mobile').hide();
			}
		}).trigger('change');

		$('#customize-control-thim_page_builder_chosen select').on('change', function() {
			if ($(this).val() == 'visual_composer') {
				$('#customize-control-thim_footer_bottom_bg_img').show();
			} else {
				$('#customize-control-thim_footer_bottom_bg_img').hide();
			}
		}).trigger('change');

		$('#customize-control-thim_box_layout select').on('change', function() {
			if ($(this).val() == 'boxed') {
				$('#customize-control-thim_user_bg_pattern').show();
				$('#customize-control-thim_bg_pattern').show();
				$('#customize-control-thim_bg_upload').show();
				$('#customize-control-thim_bg_repeat').show();
				$('#customize-control-thim_bg_position').show();
				$('#customize-control-thim_bg_attachment').show();
				$('#customize-control-thim_bg_size').show();
			} else {
				$('#customize-control-thim_user_bg_pattern').hide();
				$('#customize-control-thim_bg_pattern').hide();
				$('#customize-control-thim_bg_upload').hide();
				$('#customize-control-thim_bg_repeat').hide();
				$('#customize-control-thim_bg_position').hide();
				$('#customize-control-thim_bg_attachment').hide();
				$('#customize-control-thim_bg_size').hide();
			}
		}).trigger('change');

		$('#customize-control-thim_preload select').on('change', function() {
			if ($(this).val() == 'image') {
				$('#customize-control-thim_preload_image').show();
			} else {
				$('#customize-control-thim_preload_image').hide();
			}
		}).trigger('change');
	}

	function thim_eduma_install_demo() {
		if ($('.tc-importer-wrapper').length == 0) {
			return;
		}
 		$('.tc-importer-wrapper').addClass('elementor');

		if ($('.tc-importer-wrapper .theme.installed').length > 0) {
			return;
		}
 		var $html = '<div class="thim-choose-page-builder"><h3 class="title">Please select page builder before Import Demo.</h3>';
		$html += '<select id="thim-select-page-builder">';
		$html += '<option value="">Select</option>';
		$html += '<option value="elementor">Elementor</option>';
		$html += '<option value="visual_composer">Visual Composer</option>';
		$html += '<option value="site_origin">Site Origin</option>';
		$html += '</select></div>';

		if ($('#thim-select-page-builder').val() === '') {
			$('.tc-importer-wrapper').addClass('overlay');
		}

	}

	function thim_eduma_edit_term() {
		var $custom_heading = $('#thim_custom_heading');

		if (!$custom_heading.length) {
			return;
		}

		check_dependency();
		$(document).on('change', '#thim_custom_heading', function(event) {
			check_dependency();
		});

		function check_dependency() {
			var $custom_heading = $('#thim_custom_heading');

			var checked = $custom_heading.prop('checked') || false;
			toggle_hidden_fields(checked);
		}

		function toggle_hidden_fields(checked) {
			var fields_name = [
				'thim_archive_top_image[id]',
				'thim_archive_cate_heading_bg_color',
				'thim_archive_cate_heading_text_color',
				'thim_archive_cate_heading_bg_opacity',
				'thim_archive_cate_sub_heading_text_color',
				'thim_archive_cate_hide_title',
				'thim_archive_cate_hide_breadcrumbs',

				'thim_learnpress_top_image[id]',
				'thim_learnpress_cate_heading_bg_color',
				'thim_learnpress_cate_heading_bg_opacity',
				'thim_learnpress_cate_heading_text_color',
				'thim_learnpress_cate_sub_heading_text_color',
				'thim_learnpress_cate_hide_title',
				'thim_learnpress_cate_hide_breadcrumbs',
			];

			fields_name.forEach(function(field_name) {
				var $input_field = $('[name="' + field_name + '"]');
				var $field = $input_field.closest('.form-field');

				if (checked) {
					$field.removeClass('hide');
				} else {
					$field.addClass('hide');
				}
			});
		}
	}

	var custom_uploader;
	$(document).on('click', '#image_level', function(e) {
		//e.preventDefault();
		//Extend the wp.media object
		custom_uploader = wp.media.frames.file_frame = wp.media({
			title   : 'Choose Image',
			button  : {
				text: 'Choose Image',
			},
			multiple: false,
		});
		//If the uploader object has already been created, reopen the dialog
		if (custom_uploader) {
			custom_uploader.open();
			//return;
		}

		//When a file is selected, grab the URL and set it as the text field's value
		custom_uploader.on('select', function() {
			attachment = custom_uploader.state().get('selection').first().toJSON();
			jQuery('#image_level').val(attachment.url);

			//Open the uploader dialog
			custom_uploader.close();
		});
	});
});

Youez - 2016 - github.com/yon3zu
LinuXploit