Have you recently updated Magazine Premium WordPress theme to v1.1.9?? And are you seeing no comment template on page?? Yes, that’s expected.
Kindly look at this change log:
Another must read:
- https://crunchify.com/how-to-secure-your-wordpress-plugin-prevent-csrf-vulnerability/
- https://crunchify.com/secure-your-wordpress-blog/
09/04/2020 v2.0.12
- Fix for WP 5.5 Comments Issue
07/27/2017 v2.0.11
- Fix for default menu structure
- JS update for menus
- Removed HTML5shiv
- Fixed mixed placeholders
11/01/2016 v2.0.10
- Fixed Custom CSS editor
- Replaced navigation function
- Created template parts folder
- Moved languages folder
- Cleaned up code
11/12/2015 v2.0.9
- Fix search bar issue with mobile menu
- Added nav colors and fonts back into Customizer
- Fixed static front page
- Theme updater fix
- Cleaned up code
- Fixed issue with sanitize callback
- Updated custom widgets
- H1 tag fix
- Removed read more from gettext functions
- Optimized images
- Fixed theme check issues
- Updated language file
I also noticed the same, no comment form on page. If you want it back on your page template then you need to do below thing.
Open you loop.php and look for this line:
<?php if ( is_single() ) comments_template(); ?>
Replace it with:
<?php if ( is_singular() ) comments_template(); ?>
And you will be all set.