Oh, it might be i misunderstood in earlier.
By default, when you install the new point rule in Easysocial, it will does nothing, because it needed to add some of the PHP code to support this new point rules.
Try copy my following point rule code into your
xxx.points file then install again from your site backend > Easysocial > point > install , if you already installed the old point rules, you can remove it first before you install this newest one.
[
{
"title" : "Author Post Read",
"alias" : "read-blog-author",
"description" : "Earn Points when your article is read",
"command" : "read.blog.author",
"extension" : "com_easyblog",
"state" : true,
"points" : 1
}
]
Once you installed, you have to edit this file
JoomlaFolder/administrator/components/com_easyblog/includes/post/post.php
Under this
hit method, you have to add this following code into that line, you can refer on my attached screenshot below.
EB::easysocial()->assignPoints('read.blog.author', $this->created_by);