• Greetings,

    I hope you can help, this is a really cool plugin!

    After creating a page and adding the shortcode for “all-events”, i then created an event and it shows perfectly! I then selected the option “link title to event page” but after clicking that link in my event it takes me to a page which is black and the content missing inside the <div id=”page-wrapper”>.

    Have i missed a step? Your feedback would be greatly appreciated.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Guido

    (@guido07111975)

    Normally you should be send to the single event page when clicking the event title link.

    This might be caused by the permalink, did you already resave the permalink?

    Guido

    Hi Guido,

    I believe the issue here might be that the original theme developed as a custom theme and made a number of years ago. I’ve read your documentation and saw that you look for a file single.php or single-event.php in the theme folder. None of these 2 files actually existed. I have in the interim created those files and was able to select them as a template in the associated page (in this particular case the page for all events are https://www.ashtangayogajhb.co.za/test/) – It’s simply the “single event” page not showing anything. The contents for both the theme files (single.php and single-event.php) are:

    <?php
    /**
    * Template Name: single
    */
    get_header(); ?>
    <?php $content = apply_filters(‘the_content’, $post->post_content); ?>
    <?php if(!empty($content)): ?>
    <div class=”col-md-12″>
    <?php echo $content; ?>
    </div>
    <?php endif; ?>
    <?php get_footer(); ?>

    And:

    <?php
    /**
    * Template Name: single-event
    */
    get_header(); ?>
    <?php $content = apply_filters(‘the_content’, $post->post_content); ?>
    <?php if(!empty($content)): ?>
    <div class=”col-md-12″>
    <?php echo $content; ?>
    </div>
    <?php endif; ?>
    <?php get_footer(); ?>

    Plugin Author Guido

    (@guido07111975)

    Hi,

    If this is a fully custom build theme, the only way to help you is to send me the theme.

    The best thing to do is to create a file called single.php (or single-event.php) but in order to do this I must know how your theme is build.

    I’m willing to create this file for you, but cannot do this for free, too much work. Will ask a small compensation. If you’re interested, how can I contact you?

    By the way, this also means you are not able to use the native post feature of WordPress? Meaning, you cannot open a post in the frontend of your website?

    Guido

    ps. if you add code please click the “code” button before and after your code.

    You are correct, I tested the post feature now and as expected it’s not functional, also returns a blank page.

    Please send me an email to [email protected] and we can discuss there!

    Thank you

    Plugin Author Guido

    (@guido07111975)

    Hi,

    Sorry for the reply, have send you an email.

    Guido

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Link title to the event page – Where to generate event page?’ is closed to new replies.