plugin updates

This commit is contained in:
Tony Volpe
2024-10-11 13:25:50 -04:00
parent 5e5b879a68
commit a6fc17dcaa
391 changed files with 6812 additions and 4326 deletions

View File

@@ -684,6 +684,10 @@ ul.jaofiletree a:hover {
float: right;
}
.wpmf-setting-only-file-import{
margin: 30px 0 15px 0;
}
.wpmf-process-bar-full {
display: none;
width: 100%;

View File

@@ -414,7 +414,7 @@
/* ===== Material Design ===== */
.wpmf-attachment.mdc-list-item {
width: 190px !important;
padding: 0 16px !important;
padding: 0 10px !important;
margin: 8px !important;
overflow: hidden;
height: 48px !important;
@@ -517,7 +517,7 @@
-ms-flex-direction: column;
flex-direction: column;
display: inline-block;
width: 90px;
width: 135px;
white-space: nowrap;
overflow: hidden !important;
text-overflow: ellipsis;

View File

@@ -853,11 +853,17 @@ var wpmfTreeOptionsModule;
*/
$('.import_ftp_button').on('click', function () {
var $this = $(this);
var check_only_file = document.getElementById("only_file");
var wpmf_only_file = 0;
if (check_only_file.checked == true){
wpmf_only_file = 1;
}
$.ajax({
type: 'POST',
url: ajaxurl,
data: {
action: "wpmf_import_folder",
wpmf_only_file: wpmf_only_file,
wpmf_list_import: wpmf_list_import,
wpmf_nonce: wpmfoption.vars.wpmf_nonce
},