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.
I can't log in. It says "Invalid username or password"
If you have lost your username or password, visit this page, enter your email address, and you will be sent an email with a link that you can follow to reset your login.
If you do not receive the login details you expect via email, or if you have lost access to your email address, you can contact us. Under some circumstances we are able to recover a lost account.
How do I automate creating channels with the Channel API?
Cbox Pro provides a very simple API for creating new channels on the fly.
At the Channels page in your control panel you will find your secret API URL. You can open this URL directly in your browser to test it, but it's intended to be called by back-end scripts running on your own site.
The return format for this call is a single line of tab-separated plain-text fields. If there was an error, the first field is "FAIL" and the second field is an error code. If a new thread was successfully generated, the first field is "OK", and the second and third fields are the thread ID and thread key, respectively.
By way of example, this very simple PHP script will generate threads for your Cbox. New threads created via the API will show up in your control panel, but you should store the thread ID and key in your own database as well.
<?php $cb_tid = null; $cb_tkey = null; $cb_rs = file_get_contents('YOUR_API_URL', 'r'); $cb_rp = explode("\t", $cb_rs); if ($cb_rp[0] === 'FAIL') { // There was an error. // $cb_rp[1] contains the error code } else if ($cb_rp[0] === 'OK') { // Success $cb_tid = $cb_rp[1]; $cb_tkey = $cb_rp[2]; } else { // Some other error occured. } if ($cb_tid && $cb_tkey) { // New key generated. Store $cb_tid and $cb_tkey in your database or user session. // And insert them into your Cbox HTML code iframe src URLs: // ....&sec=main&tid=<?php echo $cb_tid;?>&tkey=<?php echo $cb_tkey;?> // ....&sec=form&tid=<?php echo $cb_tid;?>&tkey=<?php echo $cb_tkey;?> } ?>
What payment methods are available?
We accept payment via PayPal. PayPal accepts most credit and debit cards, and depending on your region, you may be able to check out without creating a PayPal account. In some regions it is also possible to pay via bank transfer ("eCheck") through PayPal.
If you have any difficulties making payment, please contact us, and we can assist.
How do I move my Cbox to a different part of my page?
You can move your Cbox embed code around in your HTML to make your Cbox show up in a different place. You can also make it align to the centre or right side of the page, by editing the code a little.
Your code may include something like this:
position: relative; margin: 0 auto;
Remove margin: 0 auto;
to eliminate the centering. You can replace it with float: left;
or float: right;
to make your Cbox move to the left or right, respectively.
To move it up or down on your page, you'll need to move the code to a different part of your layout. If you have access to the HTML of your page but don't know HTML, test different places to see which works best.
Other code variations may have different position methods, but can usually be edited in CSS. For example, the "fixed button" code includes inline CSS which controls its position on the page.
The Quick Link page has an error saying "Not Found" or "Invalid Quick Link"
Check that your Quick Link is enabled at your Publish page, and confirm that you have the correct URL for it.