Hi Catalina,
I think you find a small bug, but you can change the sql request by this. It must resolve your problem.
bm_page_manager
$Qpages = $CLICSHOPPING_Db->prepare('select count(*) as count
from :table_pages_manager
where status = 1
and page_box = 0
and page_type = 4
and (customers_group_id = :customers_group_id or customers_group_id = 99)
');
$Qpages->bindInt(':customers_group_id', (int)$CLICSHOPPING_Customer->getCustomersGroupID() );
and
bm_page_manager_customize
$QpagesSecondary = $CLICSHOPPING_Db->prepare('select count(*) as count
from :table_pages_manager
where status = 1
and page_box = 1
and page_type = 4
and (customers_group_id = :customers_group_id or customers_group_id = 99)
');
$QpagesSecondary->bindInt(':customers_group_id', (int)$CLICSHOPPING_Customer->getCustomersGroupID() );