Hello,
Sorry with option.
In Book library Pro for admin if Admin wish every new book will publish
he need go to
{yours site}/administrator/components/com_booklibrary/admin.booklibrary.php
find rows:
Code: |
$book->published = 0;
$book->approved = 0;
|
and replace to
Code: |
$book->published = 1;
$book->approved = 1;
|
For every book added from frontend if you wish publish it:
in file:
{yours site}/components/com_booklibrary/booklibrary.php
find code:
Code: |
if (!$book->check()) {
|
and replace to
Code: |
$book->published = 1;
$book->approved = 1;
if (!$book->check()) {
|