• 17-12-2020, 12:51:48
    #1
    Merhaba arkadaşlar bu temada ki footer yazısını nasıl silebilirim ? footer.php baktım ama göremedim ?
  • 17-12-2020, 12:52:52
    #2
    tema ayarlarında
  • 17-12-2020, 12:52:56
    #3
    Görememe sebebin muhtemel PHP bilgin olmamasından kaynaklıdır.
    Tema ayarları kısmı var ise oraya bak, eğer yoksa buraya PHP kodlarını pasla, footer'ın beraber bakalım
  • 17-12-2020, 12:58:58
    #4
    <?php/** * The template for displaying the footer. * * Contains the closing of the #content div and all content after * * @package xooapp */?>
    <?php
    $page_settings = get_post_meta( get_the_ID(), '_custom_page_options', true );
    if( !empty( $page_settings ) && isset($page_settings['footer_color']) && !empty($page_settings['footer_color']) ) { $footer_clr = '#fff'; $footer_clr = (isset($page_settings['footer_color']) ) ? $page_settings['footer_color'] : '#fff'; $footer_bg = 'style="background-color: '. esc_attr( $footer_clr ) .' "';} else { $footer_bg = '';}?><footer id="footer-1" class="p-bottom-60 footer division" <?php echo wp_kses_stripslashes( $footer_bg ) ?> itemscope="itemscope" itemtype="http://schema.org/WPFooter">
    <?php if ( function_exists( 'xooapp_framework_init' ) && !empty($page_settings) ) {
    if( array_key_exists('show_footer_subs', $page_settings) && $page_settings['show_footer_subs'] ) { get_template_part('footers/footer', 'subscription'); } if( array_key_exists('show_footer_widgets', $page_settings) && $page_settings['show_footer_widgets'] ) { get_template_part('footers/footer', 'widgets'); } } ?>
    <?php if ( function_exists( 'xooapp_framework_init' )) { ?>
    <!-- FOOTER COPYRIGHT --> <div class="container bottom-footer"> <div class="row"> <div class="col-md-5"> <div class="row footer-copyright">
    <?php echo wp_kses_stripslashes( xooapp_get_option( 'copyrights' ) ); ?>
    </div>
    </div> <div class="col-md-7"> <div class="row footer-links text-right"> <?php $show_footer_link = get_post_meta( get_the_ID(), '_custom_page_options', true ); $footer_menu = ''; $footer_menu = xooapp_get_option('footer_menu'); if(!empty($footer_menu) && isset($show_footer_link['show_footer_link']) ) { ?> <ul class="foo-links clearfix"> <?php foreach ($footer_menu as $value) { ?> <li><a href="<?php echo esc_url( $value['footer_menu_link'] ) ?>" class="<?php echo esc_attr( $value['footer_menu_title'] ) ?>"><?php echo esc_html( $value['footer_menu_title'] ) ?></a></li> <?php } ?> </ul> <?php } ?> </div> </div> </div> <!-- END BOTTOM FOOTER -->
    </div>
    <?php } ?></footer>

    </div> <!-- end page -->
    <?php wp_footer();?>


    </div> </body></html>
  • 17-12-2020, 12:59:07
    #5
    footer yazınısı silmek istiyorsan css ile uğraşmadan görünürlüğüne none yap. detaylı bilgi almak istersen site link paylaşabilirsin yada mesaj atabilirsin.
  • 17-12-2020, 13:04:07
    #6
    PM atın halledelim
  • 17-12-2020, 13:29:13
    #7
    <!-- FOOTER COPYRIGHT --> <div class="container bottom-footer"> <div class="row"> <div class="col-md-5"> <div class="row footer-copyright">
    <?php echo wp_kses_stripslashes( xooapp_get_option( 'copyrights' ) ); ?>
    </div>

    Öncelikle bir yedek alıp burasını silip deneyebilir misiniz ?
  • 17-12-2020, 15:51:15
    #8
    Çözüldü. Teşekkürler