Help & Support
Our help database contains answers to most of the common questions regarding our products.
If you are unable to locate a satisfactory answer for your query by searching here, please contact us.
I lost my Cbox embed code. Where can I get it?
Your Cbox embed code is available at your control panel. You need this code to install your Cbox on your website.
Also on that page is your Quick Link — a URL which you can use to access your Cbox directly in your browser or on your mobile device.
How do I put my Cbox on my website?
Once you have created your Cbox account, go to the Publish page of your control panel. The code and steps for embedding your Cbox are provided there for a number of common platforms.
If you install your Cbox and all you see is code, or nothing at all, your web host may be removing or otherwise interfering with the HTML iframe tags that Cbox uses. Your Cbox code needs to be pasted into an area of your site that accepts HTML without modification. This may mean switching your editor from "rich text" or "WYSIWYG" mode into HTML-editing or "raw" mode, or you may need to open your template files in a plain-text editor like Notepad.
Remember that you always have the option of posting or sharing your Cbox Quick Link — this gives visitors direct access to your Cbox in a full-screen layout, so it's perfect as a mobile option or for stand-alone use.
How do change my Cbox's style to go with my site's design?
Go to the Theme editor in your control panel. There you can specify the fonts and colours of your Cbox, using a point-and-click editor. You can always reset your theme to one of the preset defaults there, if you would like to start again.
If you have a Premium or Pro Cbox you can edit CSS, which gives you complete control over presentation.
How do I delete messages?
If you have a Premium or Pro Cbox, you can create a moderator name for yourself at your Users page, and then log in on your Cbox using the "profile" link. You will see a delete icon [x] next to each message in your Cbox, and you will not have to log in at your control panel at all to delete messages.
Alternatively, visit your Messages page to delete messages individually or in bulk. Deleted messages are removed from your public Cbox history, but are preserved in your Archives.
Can I make my Cbox transparent?
Yes. In the Theme editor, simply delete the colour codes for the main and form background ("BG") elements. This will make the Cbox transparent, allowing whatever is behind the Cbox to show through.
Note that any pop-ups generated by a transparent Cbox will have the default background colour — usually white. If your font colour is light, it may be invisible in popups. You can fix this by editing the CSS to introduce a background-color rule for popups.
My scroll bar is missing!
This is normal for Cboxes that do not have many messages. The scroll bar will appear when it's required. If you want to force it to appear always, you can edit CSS, adding the following:
body {overflow: scroll;}
What happens to my credit when I upgrade or renew early?
When you renew your service with us, your paid term is extended by the additional time that you purchase, regardless of the remaining credit. This means you never lose any time. For example, if your term ends on 21 September, but you renew early, purchasing 12 months in July, then your term is extended to 21 September next year.
Upgrading Premium to Pro
When you upgrade from Premium to Pro, your credit is reset for the new plan. Remaining Premium credit is however held on your account, and if you have sufficient credit, you can contact us to request a pro-rated conversion after your upgrade.
I can't hear the sound effect or its volume is too low
Check that sound notification is enabled at the Settings page of your Control Panel.
If it is enabled, then you should see a volume control button in your Cbox. Clicking this will toggle through three levels. It will also play the sound on each click to confirm the level.
If you are using a custom sound, ensure that you have uploaded both OGG and MP3 versions of the file. Cbox chooses which one to load based on the browser's capabilities.
If you still cannot hear the sound, then there may be a problem with your browser or system. Please contact us for further assistance.
Ban and kick: what's the difference?
When you ban a user, they are not able to post to your Cbox for the duration of the ban. They will also not be able to use any other features, such as private messaging. The default ban duration is one day.
Kicking a user, by contrast, simply disconnects them from your Cbox. Their view of your Cbox will go blank, and they won't be able to see any new messages, nor post.
Unlike a ban however, a kick is not continuously enforced. A kicked user can re-load your Cbox to re-join and resume viewing and posting. For this reason, kicking can be useful as a deterrent or warning — or simply to drop idle users — but it cannot prevent a user from returning to your Cbox.
Can I prevent "Guest" from posting in my Cbox?
With a paid Cbox, you can enable the option "Users must be registered" at the Users page in your control panel.
If you are using Integration, then there are two ways to disable access for a particular user. The easiest is to register the "Guest" name, then immediately ban it.
You can also invalidate names in your Integration code. For example, use a conditional and clear the nme and nmekey parameters:
<?php
if ($nme == "Guest") {
$nme = "";
$nmekey = "";
}
// The rest of your Integration code goes here...
?>