Stránka 1 z 1

Wordpress

Napsal: 23 čer 2017 14:43
od FilipS8
Zdravím , spravil som si nový page-template do ktorého som pridal svôj naprogramovaný dotazník ibaže po stlačení tlačitka v dotazníku mi výpíše chybua neviem čo s tým

Kód: Vybrat vše

Fatal error: Call to undefined function is_events_archive() in /nfsmnt/hosting2_2/2/f/2f30c8b1-33fb-4108-a08c-32b349e1f6be/xxx.sk/sub/psycho/wp-content/themes/regina-lite/inc/components/breadcrumb/class.mt-breadcrumb.php on line 227 


Použitý kód na vytvorenie page-template :

Kód: Vybrat vše

<?php get_header(); ?>
<?php get_template_part( 'sections/section', 'page-header' ); ?>
<div class="container">
    <div class="row">
        <?php get_template_part( 'sections/section', 'breadcrumb' ); ?>
        <?php get_sidebar(); ?>
        <div id="blog" class="single">
            <div class="col-md-8">
                <?php
                if( have_posts() ):
                    while( have_posts() ):
                        the_post();
                        get_template_part( 'template-parts/content', 'page' );
                    endwhile;
                endif;
                ?>
                <?php
                if ( comments_open() || get_comments_number() ) :
                    comments_template();
                endif;
                ?>
            </div><!--.col-lg-8-->
        </div><!--#blog.archive-->
    </div><!--.row-->
</div><!--.container-->
<?php get_footer(); ?>


Díky , za pomoc

Re: Wordpress

Napsal: 25 čer 2017 01:46
od autoprd
Ještě by nebylo úplně od věci přidat zdrojový kód ze "/wp-content/themes/regina-lite/inc/components/breadcrumb/class.mt-breadcrumb.php" v němž se nachází tato chyba na řádku 227 :)

Re: Wordpress

Napsal: 25 čer 2017 16:00
od FilipS8
Sorry na to som zabudol

Kód: Vybrat vše

 // Special treatment for Events Calendar to avoid 404 messages on list view
            if ( class_exists( 'TribeEvents' ) &&
               tribe_is_event() || is_events_archive() // toto je 227
            ) {