How can I lock a section of the page (Disqus comments)
-
Hi,
I want to lock my comments section.
I implement Disqus in php like this in my singlepost.php:
</div><!-- #primary --> <?php disqus_embed('website'); ?> <?php get_footer(); ?>
I tried wrapping the disqus line with :
<?php ob_start(); ?> <?php disqus_embed('website'); ?> <?php $to_lock = ob_get_contents(); ob_end_clean(); ?> <?php echo do_shortcode('[sociallocker]'.$to_lock.'[/sociallocker]');?>
But it just locks the whole page. I JUST want to lock the comments. How can I do this please?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How can I lock a section of the page (Disqus comments)’ is closed to new replies.