• Resolved mx760

    (@mx760)


    Hi, does anyone have experience using AJAX Event Calendar Plugin, it offers shortcode but I am not sure how to register it and starting using. You see, I want to show a calendar in my website for meeting events.

    Any helps, many thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mx760

    (@mx760)

    I hope someone can help out, I don’t know where what to put to create a shorcode handler function, any help appreciated.

    Thread Starter mx760

    (@mx760)

    OK, so I found the Shortcode details here:


    https://code.google.com/p/wp-aec/wiki/ShortcodeOptions

    but can someone give me a heads up on how to use it. That be great.

    Thread Starter mx760

    (@mx760)

    Ok, so I put inside my header.php:
    <?php wp_head(); ?>

    as such:
    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
    <title><?php bloginfo(‘name’);?></title>
    <link href=”<?php echo get_stylesheet_uri(); ?>” rel=”stylesheet” type=”text/css” />
    </head>
    <body>

    <div class=”header”>
    <img class=”logo” src=”<?php echo get_template_directory_uri(); ?>/images/primrose_place_logo.jpg”/>
    <?php wp_head(); ?><!–NB: um, so is this placeholder to let WP know I want plugin to show up in div ‘header’?–>
    <div class=”menuItems”>
    <?php wp_list_pages(‘title_li=&sort_column=menu_order’); ?>

    <div class=”ticker”>
    <p><?php if (function_exists (news_announcement)) news_announcement(); ?></p>
    </div><!– END ticker–>

    </div><!– END menuItems–>
    </div><!– END header–>

    <div class=”container”><!–wrapper for content body (which in turn holds sidebar)–>

    <div class=”contentBox”>
    <div class=”content”>

    Then when I went to check the webpage, it just adds a break, so what I mean is the header is pushed downwards but there’s still no calendar, I already put in [calendar] shortcode in the HTML view editor in the Admin, so what the heck is going on? All it’s showing inside
    my page body is a link titled: “Add Event” which links to the backend calendar (I mean Admin of course) AJAX Event calendar. BUT I want the front-end calendar to show up…

    Won’t someone give me a hand?

    Thread Starter mx760

    (@mx760)

    Dag nab it, I fixed it, I just had to put wp_head(); inside </head> and wp_footer(); inside </body>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Assistance using AJAX Event Calendar’ is closed to new replies.