Custom functions that can be used:: Get links to companies board
<?php if(function_exists('bpr_companies_url')) { echo bpr_companies_url(); } ?>
Get link to user's company profile
<?php if(function_exists('bpr_company_url')) { echo bpr_company_url($user_id); } ?>
Get user's company logo/icon
<?php if(function_exists('bpr_get_user_img')) { echo bpr_get_user_img($user_id); } ?>
Get company's listings on search page
<?php if(function_exists('bpr_company_items_url')) { echo bpr_company_items_url($user_id); } ?>
Get company's brand color
<?php if(function_exists('bpr_company_color')) { echo bpr_company_color($user_id); } ?>
Get companies block (on home, search or item page)
<?php if(function_exists('bpr_companies_block')) { echo bpr_companies_block($limit, $order); } ?>
$limit - enter number how many profiles should be shown at once $order - there are multiple sorting types for companies: 'NEW' - from newest to oldest 'ITEMS' - based on number of items specific user has published 'RANDOM' - shown in completely random order each time page is refreshed 'SEARCH' - consider city & category on search page and show only profiles matching these criteria