Support » Ohjeet ja vianmääritys » -sivuston taustalla pyörii WordPress

  • sivuston taustalla pyörii WordPress -ilmoitus on sivuston alalaidassa. Se on ilmestynyt sinne itsekseen ja samalla myös footer on poistunut. Mitä on tapahtunut ja miten saan sen pois?

    The page I need help with: [log in to see the link]

Esillä 6 vastausta, 1 - 6 (kaikkiaan 6)
  • Miten oma footer oli tehty? Oliko se kenties tehty teeman tiedostoja muokkaamalla, ja päivitkö sitten teeman? Näyttäisi vähän teeman oletusfooterilta.

    Thread Starter santra

    (@santra)

    Teemana on Generate Press child, eikä sen oletuksena ole tuollainen. Oma footer oli tehty mukauttimella ja se tosiaan hävisi jossain vaiheessa eikä nyt muutokset enää tulleet voimaan, kun hetki sitten kokeilin sitä muokata. Tuo teksti on vain ja pysyy.

    Jos mukautin ei tuohon pure, niin sitten pitää vilkuilla sivupohjia. Footer.php lienee paras paikka lähteä, miltä se näyttää?

    Thread Starter santra

    (@santra)

    Aivan. En tiedä mistä löytäisin tuon footer.php:n sulle katsottavaksi. Voitko neuvoa?

    Thread Starter santra

    (@santra)

    Moi, nyt löysin paikan (ehkä) Otin siis pääteeman tiedoista, kun childissa ei ollut mitään. Siellä ei ollut tiedostoa, joka olisi nimetty footer lainkaan. Tämä ei taida olla se mitä tarvitsit?

    <?php
    /**
    * The main template file.
    *
    * This is the most generic template file in a WordPress theme
    * and one of the two required files for a theme (the other being style.css).
    * It is used to display a page when nothing more specific matches a query.
    * E.g., it puts together the home page when no home.php file exists.
    * Learn more: http://codex.wordpress.org/Template_Hierarchy
    *
    * @package GeneratePress
    */

    if ( ! defined( ’ABSPATH’ ) ) {
    exit; // Exit if accessed directly.
    }

    get_header(); ?>

    <div id=”primary” <?php generate_do_element_classes( ’content’ ); ?>>
    <main id=”main” <?php generate_do_element_classes( ’main’ ); ?>>
    <?php
    /**
    * generate_before_main_content hook.
    *
    * @since 0.1
    */
    do_action( ’generate_before_main_content’ );

    if ( have_posts() ) :

    while ( have_posts() ) : the_post();

    /* Include the Post-Format-specific template for the content.
    * If you want to override this in a child theme, then include a file
    * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    */
    get_template_part( ’content’, get_post_format() );

    endwhile;

    /**
    * generate_after_loop hook.
    *
    * @since 2.3
    */
    do_action( ’generate_after_loop’ );

    generate_content_nav( ’nav-below’ );

    else :

    get_template_part( ’no-results’, ’index’ );

    endif;

    /**
    * generate_after_main_content hook.
    *
    * @since 0.1
    */
    do_action( ’generate_after_main_content’ );
    ?>
    </main><!– #main –>
    </div><!– #primary –>

    <?php
    /**
    * generate_after_primary_content_area hook.
    *
    * @since 2.0
    */
    do_action( ’generate_after_primary_content_area’ );

    generate_construct_sidebars();

    get_footer();

    Tuolta se footer tulee tuosta get_footer();-funktiosta. Mutta jos tuo on sivupohja, millä se tulee, niin en kyllä näe, miksei se Mukauttimella toimisi… Vaikea sanoa, tarkempi vastaus vaatisi lähempää tutkimista siitä, mitä sivuilla tarkalleen ottaen tapahtuu.

Esillä 6 vastausta, 1 - 6 (kaikkiaan 6)
  • The topic ‘-sivuston taustalla pyörii WordPress’ is closed to new replies.