HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/themes/divi/includes/builder/scripts/library_category.js
(function($){
	$( document ).ready( function() {
		var $main_table = $( '.wp-list-table' );
		var $all_links = $main_table.find( '.row-title' );
		var $opened_wp_menu = $( 'li.wp-menu-open' );

		// hide unsupported options from the Categories list table
		$main_table.find( '.row-actions .edit, .row-actions .view' ).css( 'display', 'none' );

		// close the opened categories menu which is not related to library categories
		$opened_wp_menu.find( 'a.wp-menu-open' ).removeClass( 'wp-menu-open wp-has-current-submenu' );
		$opened_wp_menu.find( '.wp-submenu' ).addClass( 'wp-not-current-submenu' );
		$opened_wp_menu.removeClass( 'wp-menu-open wp-has-current-submenu' );

		// activate quick edit instead on category tite click because full editor is not supported for the library categories
		$main_table.on( 'click', '.row-title', function() {
			$( this ).closest( 'td' ).find( '.row-actions .inline a' ).trigger( 'click' );
			return false;
		} );

		// disable links for posts counts because it doesn't work with library items which are not public.
		$main_table.on( 'click', 'td.column-posts a', function() {
			return false;
		} );
	});
})(jQuery)