Page 3 of 5

Re: Snicker Comments

Posted: Sun Feb 28, 2021 11:21 am
by SamBrishes
stani wrote: Sun Feb 28, 2021 7:17 am And please be in the next update Subscription, Registration and Email notification?
Hellow,

GDPR compatible comment subscriptions and eMail notifications will be definitively in. What do you mean with registrations?

Sincerely,
Sam.

Re: Snicker Comments

Posted: Sun Feb 28, 2021 11:39 am
by stani
For a profile picture is registration required, isn't it?

Another thing: will be an opportunity for the Admin to choose/change his username?

And email notification to the admin of new (unapproved) posts?

And the most important question: when will Snicker 2.0 be available, please?

Re: Snicker Comments

Posted: Sun Feb 28, 2021 12:33 pm
by SamBrishes
stani wrote: Sun Feb 28, 2021 11:39 am For a profile picture is registration required, isn't it?
The Snicker Plugin itself won't manage user registrations, this should be done carefully by another plugin (I developed a user plugin for myself, but hadn't time to finalize it for the general use). Currently, the Snicker Plugin generates the Avatar using the Gravatar Service or an Identicon for not-registered users, or - of course - the Profile Picture for registered users. At least, if a user plugin for Bludit will be available, it will fit Bludit's Profile Picture option directly.

Adding a user registration / management to Snicker would only make the development of the plugin more difficult, since too many functions come together in one place. Anyway, it was planned offering Snicker as a Service (next of using it locally), which would out-source the user management completely (like on Disqus), but this idea has been discarded for the time being.

stani wrote: Sun Feb 28, 2021 11:39 am Another thing: will be an opportunity for the Admin to choose/change his username?
The username is based on the native Nickname option which can be changed at any time on Bludit's Profile administration. I don't see the benefit of offering an additional way to change the username besides Bludit's native solution.

stani wrote: Sun Feb 28, 2021 11:39 am And the most important question: when will Snicker 2.0 be available, please?
Snicker is still alpha, Version 0.2.0 (which may become beta status) will probably take some more time. I can't say any release date yet, but since I lost a big process there is plenty more lines to write than ever.

Sincerely,
Sam.

Re: Snicker Comments

Posted: Sun Feb 28, 2021 1:52 pm
by stani
OK Sam, thanks.

At least update when will be, please?

Re: Snicker Comments

Posted: Mon Mar 01, 2021 7:54 pm
by stani
Next: by Reply appear "wrotes" - translation is not possible here.
wrotes.jpg
wrotes.jpg (34.69 KiB) Viewed 8625 times

Re: Snicker Comments

Posted: Wed Mar 03, 2021 6:40 pm
by stani
Sam,

for future upgrade, I recommend alongside the Captcha, adding a Question-Answer.
Robots will learn an Captcha, but Question-Answer especially when it is in the national language with accents , robots do not overcome.

Re: Snicker Comments

Posted: Tue Mar 16, 2021 8:01 pm
by stani
Snicker doesn't work with the Docs X theme? :shock: :( :?:

I just finished the website in Docs X, and I want to run Snicker and it doesn't work ... :cry:

Re: Snicker Comments

Posted: Wed Mar 17, 2021 12:26 pm
by Edi
There are the hooks missing in the template page.php in the directory /bl-themes/docs-x-3.2/php.

Add the following before line 1:

Code: Select all

<?php Theme::plugins('pageBegin'); ?>
And add the following after line 11:

Code: Select all

<?php Theme::plugins('pageEnd'); ?>
The modified template will be:

Code: Select all

<?php Theme::plugins('pageBegin'); ?>
<h1 class="title text-uppercase"><?php echo $page->title(); ?></h1>

<div class="d-none d-lg-block">
<div id="toc">
   <ul id="toc-content"></ul>
</div>
</div>

<div id="page-content">
<?php echo $page->content(); ?>
</div>

<?php Theme::plugins('pageEnd'); ?>

<?php if (!$url->notFound()): ?>
<div class="text-right mt-5">
   <a class="btn btn-primary" target="_blank" href="<?php echo $GITHUB_BASE_URL.$page->key().'/'.$FILENAME ?>"><?php echo $language->get('Collaborate with us and edit this page'); ?></a>
</div>
<?php endif ?>

Re: Snicker Comments

Posted: Wed Mar 17, 2021 6:46 pm
by stani
Many thanks, Edi. :)

You are really Bludit Master. ;)

Just one more thing please: now is the Snicker form too close to the content of the page. Could there be a bigger blank space?

Re: Snicker Comments

Posted: Wed Mar 17, 2021 11:01 pm
by Edi
You can modify this with CSS.

Add for example the following to the field "Header" of the plugin HTML Code:

Code: Select all

<style>

.snicker-comments {
   margin-top: 100px !important;
}

</style>
The value of margin-top (100px) is the space to the text.