Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter michaellindahl

    (@michaellindahl)

    Thanks for the input. I went the route of creating a new page template:

    <?php
    /**
     * Template Name: Blank
     *
     * The template for displaying a blank.
     */
    ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo('charset'); ?>" />
    <title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php if($ct_favicon): ?>
    <link rel="icon" type="image/png" href="<?php echo $ct_favicon; ?>" />
    <?php endif; ?>
    <?php if($ct_ios_icon): ?>
    <link rel="apple-touch-icon" href="<?php echo $ct_ios_icon; ?>" />
    <?php endif; ?>
    <?php wp_enqueue_script('jquery') ?>
    <style type="text/css">
    .ai1ec-date, .btn {
    background: white;
    text-shadow: none !important;
    }
    .ai1ec-calendar-toolbar, .ai1ec-title-buttons, #wpadminbar, .ai1ec-subscribe, .ai1ec-subscribe-google, img#wpstats {
    display: none;
    }
    a.btn.ai1ec-subscribe, a.btn.ai1ec-subscribe-google {
    display: none;
    }
    </style>
    </head>
    <body <?php body_class(); ?>>
    	<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
    			<?php the_content(); ?>
    	<?php endwhile; ?>
    <?php if($ct_analytics_code): echo $ct_analytics_code; endif; ?>
    <?php
    	/* Always have wp_footer() just before the closing </body>
    	 * tag of your theme, or you will break many plugins, which
    	 * generally use this hook to reference JavaScript files.
    	 */
    	wp_footer();
    ?>
    </body>
    </html>
    Thread Starter michaellindahl

    (@michaellindahl)

    I understand this. However if I save from the HTML tab it works fine. I am doing this to create a printable page for the calendar. Is there a better way to do this?
    https://bethanypc.com/calendar/campus/print/ comes from https://bethanypc.com/calendar/campus/

    Any update on this issue? I am having it as well. I would like to hide some plugins, move others around, but still want to have access to all of them, whether they are hidden (access via URL) or moved around. But it seems as though if you hide or move around the menus you no longer have permission to access the page. [I’m the site Admin]

    The wp-admin/?reset_admin_menu=1 didn’t fix it.

Viewing 3 replies - 1 through 3 (of 3 total)