Znajdź zawartość
Wyświetlanie wyników dla tagów 'footer' .
-
Witam, Mam nadzieję, że piszę w dobrym dziale, jeśli nie to proszę o przeniesienie. Chciałbym dodać na dole strony 3 linki. Kiedy edytuje plik footer to strona się wykracza. Nie bardzo się na tym znam więc proszę o pomoc. Myślę, że dobrze wytłumaczone. Oto kod footer: <footer> <?php if ( is_active_sidebar( 'footer-1' ) ) : ?> <div class="main-footer"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-4"> <?php if ( is_active_sidebar( 'footer-1' ) ) : ?> <aside id="secondary" class="sidebar widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-1' ); ?> </aside><!-- .sidebar .widget-area --> <?php endif; ?> </div><!-- .sidebar-wrapper --> <div class="col-md-4 col-sm-4"> <?php if ( is_active_sidebar( 'footer-2' ) ) : ?> <aside id="secondary" class="sidebar widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-2' ); ?> </aside><!-- .sidebar .widget-area --> <?php endif; ?> </div><!-- .sidebar-wrapper --> <div class="col-md-4 col-sm-4"> <?php if ( is_active_sidebar( 'footer-3' ) ) : ?> <aside id="secondary" class="sidebar widget-area" role="complementary"> <?php dynamic_sidebar( 'footer-3' ); ?> </aside><!-- .sidebar .widget-area --> <?php endif; ?> </div><!-- .sidebar-wrapper --> </div> </div> </div> <?php endif; ?> <div class="sub-footer"> <div class="container"> <div class="row"> <div class="col-md-8 col-xs-8"> <p><?php echo esc_html( get_theme_mod( 'footer_copyright','' ) ) ; ?></p> </div> <div class="col-md-4 col-xs-4 footer-credit"> <?php $skin_url = 'https://www.mhthemes.com/themes/mh/skin/'; ?> <p> <?php _e('Powered by','skin')?> <a href="<?php echo esc_url( $skin_url ) ?>" title="Skin WordPress Theme" target="_blank" rel="nofollow"><?php _e('Skin','skin')?></a></p> </div> </div> </div> </div> </footer> Myślę nad czymś zbliżonym do tego Z góry dziękuje za pomoc.
-
Czolem, mam tutaj nie maly problem, a mianowicie potrzebuje wywalic podpis w footerze "2016 wpsoul.com" jest to podpis autora thema. Ktos wie jak to usunac? Tutaj jest kod: <?php if(rehub_option('rehub_ads_infooter') != '') : ?><div class="content mediad_footer"><div class="clearfix"></div><div class="mediad megatop_mediad"><?php echo do_shortcode(rehub_option('rehub_ads_infooter')); ?></div><div class="clearfix"></div></div><?php endif; ?> <?php $footer_style = (rehub_option('footer_style') == '1') ? ' white_style' : ' dark_style'; $footer_bottom = (rehub_option('footer_style_bottom') == '1') ? 'white_style' : 'dark_style'; ?> <?php if(rehub_option('rehub_footer_widgets')) : ?> <div class="footer-bottom<?php echo $footer_style;?><?php if(rehub_option('rehub_footer_block') =='1') : ?> block_foot<?php endif;?>"> <div class="container no_padding_wrap clearfix"> <div class="rh-flex-eq-height col_wrap_three"> <div class="footer_widget col_item"> <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?> <?php dynamic_sidebar( 'sidebar-2' ); ?> <?php else : ?> <p><?php _e('No widgets added. You can disable footer widget area in theme options - footer options', 'rehub_framework'); ?></p> <?php endif; ?> </div> <div class="footer_widget col_item"> <?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?> <?php dynamic_sidebar( 'sidebar-3' ); ?> <?php endif; ?> </div> <div class="footer_widget col_item last"> <?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?> <?php dynamic_sidebar( 'sidebar-4' ); ?> <?php endif; ?> </div> </div> </div> </div> <?php endif; ?> <footer id='theme_footer' class="<?php echo $footer_bottom;?><?php if(rehub_option('rehub_footer_block') =='1') : ?> block_foot<?php endif;?>"> <div class="container clearfix"> <div class="footer_most_bottom"> <div class="f_text"> <?php if(rehub_option('rehub_footer_text')) : ?> <?php echo rehub_kses(rehub_option('rehub_footer_text')); ?> <?php endif; ?> <?php if(rehub_option('rehub_footer_logo')) : ?><div class="floatright ml15 mr15"><img src="<?php echo rehub_option('rehub_footer_logo'); ?>" alt="<?php bloginfo( 'name' ); ?>" /></div><?php endif; ?> </div> </div> </div> </footer> <!-- FOOTER --> <?php if(rehub_option('rehub_analytics')) : ?><?php echo rehub_option('rehub_analytics'); ?><?php endif; ?> <?php if(rehub_option('rehub_disable_totop') !='1') : ?><span class="rehub_scroll" id="topcontrol" data-scrollto="#top_ankor"><i class="fa fa-chevron-up"></i></span><?php endif; ?> <?php if(rehub_option('rehub_disable_social_footer') !='1' && is_singular('post')) : ?> <div id="rh_social_panel_footer"> <?php echo rehub_social_inimage('flat'); ?> </div> <?php endif; ?> <?php wp_footer(); ?> </body> </html>
-
Witam. Założyłem bloga na bloglock.net. W stopce szablonu z którego korzystam jest niechciana treść. Chciałbym ją usunąć. Wiem, że można usuwać treści w footer.php w edytorze ale ja nie mam dostępu do edytora w panelu. Czy jest jakas możliwość, aby usunąć niechcianą treść ze stopki z poziomu panelu admina?