• Resolved DanChorley

    (@danchorley)


    Hello,

    I am using the latest version of WordPress in a Multisite installation, which can be accessed here: https://kube.danielchorley.co.uk/ with the following details:

    Username: dan
    Password: dannoth
    (case sensitive – all lowercase)

    The calender is currently setup, as default, to display on /calendar

    However, it won’t display. I have tried versions 1.7, 1.6.1 premium, and it is currently rolled back to 1.5. Alas, it still does not display, and it seems nothing shows up in the source either?

    Any help with this would be much appreciated, as this is an excellent plugin and it would be a shame to have to use something else in its place!

    Thank you in advance.

    https://www.ads-software.com/extend/plugins/all-in-one-event-calendar/

Viewing 4 replies - 1 through 4 (of 4 total)
  • It looks like a theme problem to me.
    Are you calling the_content while in the loop? – https://codex.www.ads-software.com/The_Loop

    Thread Starter DanChorley

    (@danchorley)

    This is what is currently in page.php

    I can’t see any problem with it.
    ———————————-

    <?php get_header(); ?>

    <section id=”omc-main”>

    <article id=”omc-full-article”>

    <?php $omc_comment_type = get_post_meta(get_the_ID(), ‘omc_comment_type_page’, true); ?>

    <?php the_post_thumbnail(‘blog-full-width’, array(‘class’ => ‘featured-full-width-top page-margin’)); ?>

    <h1><?php the_title(); ?> </h1>

    <?php the_content();?>

    <?php if ($omc_comment_type == ‘none’ || $omc_comment_type == ”|| $omc_comment_type == ‘fb’) { ?>

    <div class=”omc-page-space”></div>

    <?php } ?>

    <br class=”clear” />

    <?php
    // Get the current page url for FB comments
    $url = (!empty($_SERVER[‘HTTPS’])) ? “https://&#8221;.$_SERVER[‘SERVER_NAME’].$_SERVER[‘REQUEST_URI’] : “https://&#8221;.$_SERVER[‘SERVER_NAME’].$_SERVER[‘REQUEST_URI’];
    ?>

    <?php if ($omc_comment_type === ‘fb’ || $omc_comment_type === ‘both’) { ?>

    <div class=”fb-comments” data-href=”<?php echo $url; ?>” data-num-posts=”4″ data-width=”620″></div>

    <?php } ?>

    <?php if ($omc_comment_type === ‘wp’ || $omc_comment_type === ‘both’) { ?>

    <?php comments_template( ”, true ); ?>

    <?php } ?>

    </article><!– /omc-full-article –>

    </section><!– /omc-main –>

    <?php get_sidebar();?>

    <?php get_footer();?>

    Thread Starter DanChorley

    (@danchorley)

    Now got it on full width, still doesn’t work and can’t find any problems with this either…. frustrating beyond belief!

    <?php
    /*
    Template Name: Full Width Page
    */
    ?>

    <?php get_header(); ?>

    <section id=”omc-main-full-width” class=”omc-full-width”>

    <article id=”omc-full-article”>

    <h1><?php the_title(); ?> </h1>

    <?php the_post_thumbnail(‘blog-full-width’, array(‘class’ => ‘featured-full-width-top’)); ?>

    <?php the_content(); ?>

    <div class=”omc-page-space”></div>

    </article><!– /omc-full-article –>

    </section><!– /omc-main –>

    <br class=”clear” />

    </div> <!– end of #container –>

    <?php get_footer();?>

    Can you post the code on wordpress.pastebin.com
    Otherwise it will be moderated/removed.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: All-in-One Event Calendar] Calendar not displaying whatsoever.’ is closed to new replies.