Hi,
In BookLibrary free you can hide books number:
File booklibrary.html.php function listCategories
Before any change please backup file
Below code show books count caption
Code: |
<td height="20" width="10%" class="sectiontableheader<?php echo $params->get( 'pageclass_sfx' ); ?>">
<?php echo _BOOKLIBRARY_LABEL_BOOKS;?>
</td>
|
function showInsertSubCategory
Below code responsible for show books number
Code: |
<td align="left" width="10%">
<?php if ($cat_all[$i]->books == '') echo "0";else echo $cat_all[$i]->books;?>
</td>
|
Thanks?
OrdaSoft team