1 (edited by HiS 2015-06-07 23:02:31)

Topic: GO GO comments

This is not a plugin, and the idea to create!

The idea is taken from the Star Rating plugin, simply insert the code to any page, and it displays the form of comments,
when writing the first to comment create a table with the name of the page.

I php very bad, but I think this plugin will be useful for everyone!



http://forum.monstra.org/topic/119/star-rating/

Re: GO GO comments

@HiS

Although a basic comment plugin would not be too complicated to make, there would be other things to consider such as spamming, authorisation, profanity filters etc.....

There are 3rd party comment engines that are very easy to include on your site and do exactly what you are wanting such as https://disqus.com/websites/ many high profile sites use disqus.com

will's Website

Re: GO GO comments

@will, @HiS,

I am creating a plugin for monstra 3.0.1 that registred users can comment on posts via javascript... I hope to have it soon but its only available on registred users because as will said spam etc etc.
Its the best way i can see that we can protect the cms against this kind of problems.

wink

http://monstracreative.com - themes, plugins and snippets for monstra cms

:: ATTENTION ::
Need help? Login at your account at: http://monstracreative.com/users/login. -> You have a excellent support center at our website! wink

wormsunited's Website

4 2015-06-08 12:02:00

Re: GO GO comments

The idea is that the user has not filled the data! Create a plug-in!)

<?php if (Session::get('user_id')) { ?>
I user =)
<input type="hidden"  value="<?php echo Session::get('user_login'); ?>" />
<input type="hidden" value="<?php echo Session::get('user_email'); ?>" />
<textarea type="text" ></textarea>
<?php } else { ?>
I not user =(
<input type="text"   />
<input type="text" />
<textarea type="text" id="menssage"></textarea>

Re: GO GO comments

@wormsuniteds plugin as detailed will work via registered site users, which is what you are looking for. Your code snippet also suggests that you want to allow anonymous posted comments... Spamming would likley be an issue as would site security, maybe Captcha would help but that will depend of the plugin features.

will's Website