Snicker Comments

SamBrishes
Master Bludit
Posts: 106
Joined: Tue Dec 25, 2018 8:07 pm
Been thanked: 3 times

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.
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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?
Last edited by stani on Sun Feb 28, 2021 12:35 pm, edited 1 time in total.
SamBrishes
Master Bludit
Posts: 106
Joined: Tue Dec 25, 2018 8:07 pm
Been thanked: 3 times

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.
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

OK Sam, thanks.

At least update when will be, please?
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

Next: by Reply appear "wrotes" - translation is not possible here.
wrotes.jpg
wrotes.jpg (34.69 KiB) Viewed 8141 times
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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.
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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:
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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 ?>
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
stani
Master Bludit
Posts: 79
Joined: Wed Oct 14, 2020 1:34 pm
Has thanked: 1 time

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?
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

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.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply