Thanks for using Author/Poet.
Has the footer.php file been modified? It looks like the wp_footer() function that normally calls scripts in the footer may have been removed. This is needed to load important scripts in both Author and many WP plugins.
Hello @bensibley ,
I think I edited the footer long time ago to remove the “wordpress” watermark from the bottom of the website.
I think I have a backup of this file on my server or my computer.
I’ll check this and try to rollback the editions.
Do you have a copy of this file please? (In case I didn’t save it)
Thank you for your answer, I’ll keep you informed.
Hello @bensibley ,
I had too much comments in footer.php.
Old code:
</div><!-- .max-width -->
<?php //do_action( 'overflow_bottom' ); ?>
</div><!-- .overflow-container -->
<?php //do_action( 'body_bottom' ); ?>
<?php //wp_footer(); ?>
New code:
</div><!-- .max-width -->
<?php do_action( 'overflow_bottom' ); ?>
</div><!-- .overflow-container -->
<?php do_action( 'body_bottom' ); ?>
<?php wp_footer(); ?>
Thank you for your help. 🙂