Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter renan.masse

    (@renanmasse)

    By the way, my full screen page-template :

    <?php
    /*
    Template Name: No title page
    */
    
     ?>
    <?php wp_head(); ?>
    </head>
                    <div id="primary" class="site-content">
    		<div id="content" role="main">
    
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', 'page' ); ?>
    				<?php comments_template( '', true ); ?>
    			<?php endwhile; // end of the loop. ?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    The solution is simple:
    Your page template should also have wp_footer().

    It should also have other HTML tags like <html>, <head> and <body>. You should not just leave those out.

    Regards,
    Tobias

    Thread Starter renan.masse

    (@renanmasse)

    Mh yeah, i know, but i just wanted to know, if it will be possible to just load, the extension required

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    I’m not sure what you mean then. The Extension is loaded when the necessary Shortcode parameter is set. It then loads its JS and CSS files automatically.

    What exactly are you trying to do?

    Regards,
    Tobias

    Thread Starter renan.masse

    (@renanmasse)

    I just wanted to load the required, but i’ll put the wp_footer, it work fine to.

    Thanks for your support !

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    well wp_footer() is required, just as most of the basic HTML of a page ??

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Extensions without footer, isn't working’ is closed to new replies.