How do I change my template?
The appearance of the Clientexec client area is controlled by templates. If you have your own custom template, first you would upload it to your Clientexec install to the 'templates' folder You can then activate the theme in the Clientexec admin section: Go to Settings > Company > Public Style Select your template in the 'Template' dropdown. Also ensure you select 'Yes' for the 'PSome readersCustomize the Header, Body and Footer
If you want to add additional information to the header, body or footer on your Clientexec theme, you can go to Settings > Company > Customize HTML. Select the template you want to edit (typically default) and you can then add your own custom code to the header, body or footer. You can also add there your own company logo to be displayed. You can use this features to customize the look, or even prSome readersHow to Add Your Custom Logo to Clientexec
You can personalize your Clientexec installation by adding your company’s logo to the client portal. Follow these simple steps: 📤 Step-by-Step Instructions Upload your logo (you can upload to your site using ftp or file manager). in Clientexec admin go to **Settings **> **Company **> Customize HTML Enter the url to where your logo is located in the box under Custom Logo for Client Portal Scroll down and click the Update Settings button.  IfFew readersAlerts are Under The Header and Clients Cannot View Them
In some instances you may have added a large logo and your header now overlaps alert messages causing your clients not to be able to view them. For now a quick fix for this would be to either: Reduce the height of your logo. Or in Settings > Company > Customize HTML, add this code to the header: <style> .header {z-index: 10 !important;} .alert {z-index: 1002 !important;} </style>Few readersHow to create an external registration form
If you want to create an external registration form on your website linking to your Clientexec, you can use a form like this: <?php include '/home/user/public_html/clientexecpath/library/utilities/setup_environment.php'; ?> <form method="post" action="clientexecpath/index.php?fuse=home&action=createaccount" class="support-ticket-form"> <input type="hidden" value="<?php echo CE_Lib::getSessionHash(); ?>" name="sessionHash" /> Name: <input type="text" name="guestFirstName" /> <inpFew readersAdditional Links On Client Portal
To add an additional link to the front page Client Portal you need to create a snapin. Here is a sample snapin code: In this example the name of this php file would be: PluginMainbox.php <?php require_once 'modules/admin/models/SnapinPlugin.php'; class PluginMainbox extends SnapinPlugin { public function getVariables() { $variables = array( 'Plugin Name' => array( 'type' => 'hidden', 'description' => '',Few readers
