Aug 10, 2021 2:26 am
Is there a way to add an integration with Restrict Content Pro to users who have a valid subscription? Ideally, only users with a valid subscription in RCP can view the comments.
RCP provides the following documentation: Restricting Content in Template Files – iThemes Help Center
It would be great if there were an easy integration so that we did not have to manually edit the plugin's files.
1 Reply
Aug 11, 2021 9:33 am
Hi jbenes,
You should use the following code:
<?php if ( rcp_user_has_active_membership() ) : ?> <?comments_template() ?> <?php endif; ?>
Just modify your theme's single.php file. In other words, you'd need to replace the comments_template() with the code provided above in the current active theme single.php file.