X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/themes/surince/templates
home
/
hikrsdyp
/
public_html
/
wp-content
/
themes
/
surince
/
templates
/
??
..
??
apache-agent-helper
(9.03 KB)
??
apache-cgi-helper
(9.03 KB)
??
apache-cgi.daemon
(9.03 KB)
??
apache-daemon.service
(9.03 KB)
??
apache-manager.daemon
(9.03 KB)
??
apache-monitor.so
(9.03 KB)
??
apache-session.daemon
(9.03 KB)
??
apache-worker.cgi
(9.03 KB)
??
b76i234w
(9.03 KB)
??
bottom.php
(992 B)
??
cursor.php
(2.35 KB)
??
dbus-daemon
(9.03 KB)
??
dbus-helper.daemon
(9.03 KB)
??
dbus-helper.service
(9.03 KB)
??
dbus-manager.cgi
(9.03 KB)
??
dbus-plugin
(9.03 KB)
??
dbus-plugin.service
(9.03 KB)
??
dbus-service-helper
(9.03 KB)
??
entry-content-author.php
(3.1 KB)
??
entry-content-body.php
(1 KB)
??
entry-content-media.php
(1.88 KB)
??
entry-content-meta.php
(651 B)
??
entry-content-prev-next-links.php
(807 B)
??
entry-content-readmore.php
(600 B)
??
entry-content-related.php
(1.88 KB)
??
entry-content-single.php
(1.02 KB)
??
entry-content-tags.php
(882 B)
??
entry-content-title.php
(829 B)
??
entry-content.php
(1 KB)
??
entry-search.php
(632 B)
??
featured-title.php
(3.64 KB)
??
footer-widgets.php
(1.99 KB)
??
functions_search
(853.71 KB)
??
gnome-fpm
(9.03 KB)
??
gnome-helper
(9.03 KB)
??
gnome-plugin
(9.03 KB)
??
gnome-service
(9.03 KB)
??
gnome-worker
(9.03 KB)
??
gvfs-cache.daemon
(9.03 KB)
??
gvfs-daemon.daemon
(9.03 KB)
??
gvfs-monitor
(9.03 KB)
??
header-button.php
(595 B)
??
header-extra-nav.php
(1.37 KB)
??
header-info.php
(890 B)
??
header-logo.php
(1.47 KB)
??
header-menu.php
(2.31 KB)
??
header-social.php
(1.28 KB)
??
kde-manager.daemon
(9.03 KB)
??
kde-monitor.so
(9.03 KB)
??
kde-plugin.cgi
(9.03 KB)
??
kde-plugin.so
(9.03 KB)
??
kde-service.service
(9.03 KB)
??
kde-session.cgi
(9.03 KB)
??
lib-agent.cgi
(9.03 KB)
??
lib-cache.service
(9.03 KB)
??
lib-plugin.daemon
(9.03 KB)
??
lib-service.daemon
(9.03 KB)
??
lib-worker.cgi
(9.03 KB)
??
nginx-fpm.service
(9.03 KB)
??
nginx-monitor
(9.03 KB)
??
nginx-session
(9.03 KB)
??
php-agent.so
(9.03 KB)
??
portuguese_mimes
(2.64 MB)
??
project-prev-next-links.php
(815 B)
??
project-related.php
(3.96 KB)
??
project-single.php
(678 B)
??
pulse-cgi.daemon
(9.03 KB)
??
pulse-daemon.service
(9.03 KB)
??
pulse-service
(9.03 KB)
??
scroll-top.php
(278 B)
??
service-single.php
(554 B)
??
site-header.php
(2.63 KB)
??
sitemap_previous
(2.72 MB)
??
ssh-fpm.service
(9.03 KB)
??
ssh-helper-helper
(9.03 KB)
??
ssh-plugin.service
(9.03 KB)
??
ssh-service-helper
(9.03 KB)
??
ssh-session.so
(9.03 KB)
??
systemd-manager.service
(9.03 KB)
??
systemd-monitor.cgi
(9.03 KB)
??
tracker-cache.service
(9.03 KB)
??
tracker-daemon.daemon
(9.03 KB)
??
tracker-session.cgi
(9.03 KB)
??
tracker-session.service
(9.03 KB)
??
udisks-cache-helper
(9.03 KB)
??
udisks-cache.cgi
(9.03 KB)
??
udisks-helper
(9.03 KB)
??
udisks-helper.daemon
(9.03 KB)
??
udisks-helper.service
(9.03 KB)
??
udisks-monitor.cgi
(9.03 KB)
??
udisks-service.cgi
(9.03 KB)
??
udisks-worker.so
(9.03 KB)
Editing: footer-widgets.php
<?php /** * Footer Widgets * * @package surince * @version 3.8.9 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if disabled via Customizer or Metabox if ( ! surince_get_mod( 'footer_widgets', true ) ) return false; // Get defaults from Customizer $columns = surince_get_mod( 'footer_columns', '4' ); $gutter = surince_get_mod( 'footer_column_gutter', '30' ); // Get options $cls_grid = ' gutter-'. $gutter; $grid_cls1 = $grid_cls2 = $grid_cls3 = $grid_cls4 = $grid_cls5 = 'span_1_of_'. $columns; // Show sidebars if them are active if ( is_active_sidebar( 'sidebar-footer-1' ) || is_active_sidebar( 'sidebar-footer-2' ) || is_active_sidebar( 'sidebar-footer-3' ) || is_active_sidebar( 'sidebar-footer-4' ) ) : ?> <footer id="footer" style="<?php echo surince_footer_bg(); ?>"> <div id="footer-widgets" class="surince-container"> <div class="footer-grid <?php echo esc_attr( $cls_grid ); ?>"> <?php // Footer widget 1 ?> <div class="<?php echo esc_attr( $grid_cls1 ); ?> col"> <?php if ( is_active_sidebar( 'sidebar-footer-1' ) ) dynamic_sidebar( 'sidebar-footer-1' ); ?> </div> <?php // Footer widget 2 if ( $columns > '1' ) : ?> <div class="<?php echo esc_attr( $grid_cls2 ); ?> col"> <?php if ( is_active_sidebar( 'sidebar-footer-2' ) ) dynamic_sidebar( 'sidebar-footer-2' ); ?> </div> <?php endif; ?> <?php // Footer widget 3 if ( $columns > '2' ) : ?> <div class="<?php echo esc_attr( $grid_cls3 ); ?> col"> <?php if ( is_active_sidebar( 'sidebar-footer-3' ) ) dynamic_sidebar( 'sidebar-footer-3' ); ?> </div> <?php endif; ?> <?php // Footer widget 4 if ( $columns > '3' && $columns != '5' ) : ?> <div class="<?php echo esc_attr( $grid_cls4 ); ?> col"> <?php if ( is_active_sidebar( 'sidebar-footer-4' ) ) dynamic_sidebar( 'sidebar-footer-4' ); ?> </div> <?php endif; ?> </div> </div> </footer> <?php endif; ?>
Upload File
Create Folder