• Resolved jaroslawistok

    (@jaroslawistok)


    Similar post ware closed.
    I looked for the php tamplat but I am not a prgrammer.
    I changed width and hight to smaller but the same effect.

    Menubar (only 1 of them) is now in the bottom and there are not my widgets but I guess the standards Pages, Archive and so on.

    Please help me to implement this useful plugin

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author shanebp

    (@shanebp)

    The template is here:
    .../wp-content/plugins/buddypress-simple-events/templates/single-event.php

    You can make any needed changes to that file or create a template overload by following the directions at the top of the file.

    • This reply was modified 6 years, 7 months ago by shanebp.
    Thread Starter jaroslawistok

    (@jaroslawistok)

    I have uploaded this already known file to my kippis theme but as I am not a programmer I don’t know what to do ??

    Plugin Author shanebp

    (@shanebp)

    Look at the single.php or equivalent in your theme.
    And adjust single-event.php to use the same approach.

    Thread Starter jaroslawistok

    (@jaroslawistok)

    single-post.php is below.

    All what I tried to do was wrong ??

    <?php
    get_header();
    if (!$kippis_is_smartphone) get_sidebar(‘left’);
    ?>
    <div id=”content”>
    <?php while (have_posts()) : the_post(); ?>
    <nav id=”nav-single”>
    <span class=”nav-previous”><?php previous_post_link(‘%link’,__(‘<span class=”meta-nav”>←</span> Previous’,’kippis’)); ?></span>
    <span class=”nav-next”><?php next_post_link(‘%link’,__(‘Next <span class=”meta-nav”>→</span>’,’kippis’)); ?></span>
    </nav><!– #nav-single –>
    <?php endwhile; ?>
    <?php
    while (have_posts()) {
    the_post();
    get_template_part(‘content’,’single’ );
    if (comments_open()) {
    comments_template(”,true);
    }
    }
    ?>
    </div><!– content –>
    <?php
    if ($kippis_is_smartphone) get_sidebar(‘left’);
    get_sidebar(‘right’);
    get_footer();

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Menubars are gone’ is closed to new replies.