Hi! there,
first, for the moderator: if I posted in the wrong area, please move the post to wherever it should be posted. My apologies are forthwith.
now. bellow is the code available on all pagename.php files on the root of whmcs.
===========
<?php
define("CLIENTAREA",true);
define("FORCESSL",true); // Uncomment to force the page to use https://
require("init.php");
$ca = new WHMCS_ClientArea();
$ca->setPageTitle("Custom Page");
$ca->addToBreadCrumb('index.php' , 'Home');
$ca->addToBreadCrumb('no-link-here' , 'Custom Text');
$ca->addToBreadCrumb('custompage.php','Custom Page');
$ca->initPage();
============
I would like to set add a "non-linked" item to breadcrumbs. something as the item outlined in red above. any help would be greatly appreciated. thank you!
regards ...