📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: scroll.js
"use strict"; $(function($) { if($(window).width() > 767 ) { var search_resultPageTop = $(".search-resultPage").offset().top; var nav_height = $("#header").height(); var fiexd_div = $(".search-resultPage .fiexd-nav"); if($(window).scrollTop() > search_resultPageTop - nav_height) { fiexd_div.addClass("fiexd"); } else { fiexd_div.removeClass("fiexd"); } } $(".fiexd-nav li a").each(function(){ $(this).on('click',function(){ $(".tab li").removeClass("active"); $(this).parent().addClass("active"); var click_id = $(this).attr("href"); var subs = click_id.indexOf("#"); var count = 0; var index = $(this).index('.fiexd-nav li a'); $(".tab-content").each(function(){ if(count === index){ var page_position = $(this).offset().top; var navbar_height = $(".fiexd-nav").height(); if ($(window).width() > 767) { var target_position = page_position - navbar_height + 1 - 100; } else { var target_position = page_position - navbar_height + 1; } $("html,body").stop(true,true).animate({scrollTop:target_position + "px"},1000); } count++; }); }); }); }); $(window).on('scroll',function(){ var search_resultPageTop = $(".search-resultPage").offset().top; var nav_height = $("#header").height(); var fiexd_div = $(".search-resultPage .fiexd-nav"); if($(window).scrollTop() > search_resultPageTop - nav_height) { fiexd_div.addClass("fiexd"); } else { fiexd_div.removeClass("fiexd"); } var windowPos = $(window).scrollTop(); // get the offset of the window from the top of page var page_position; var index = 0; var newindex = 0; windowPos = windowPos + 183; $(".tab-content").each(function(){ page_position = $(this).offset().top; if(windowPos > page_position){ newindex = $(this).index('.tab-content'); if(newindex > index){ index = $(this).index('.tab-content'); } } }); index = index+1; $('.fiexd-nav li').removeClass("active"); $('.fiexd-nav li:nth-child('+index+')').addClass("active"); }); $(window).on('resize',function(){ $(window).trigger("scroll"); });
Save