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 changelog:
Another must read:
- https://crunchify.com/how-to-secure-your-wordpress-plugin-prevent-csrf-vulnerability/
- https://crunchify.com/secure-your-wordpress-blog/
06/21/2012 1.1.9:
- Updated for WP 3.4
- Rewrote pagination
- Improved Twitter widget
- Fixed small CSS bugs
- Removed comment template from Pages
- Added table CSS
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:
1 |
<?php if ( is_single() ) comments_template(); ?> |
Replace it with:
1 |
<?php if ( is_singular() ) comments_template(); ?> |
And you will be all set.