DemoWolf to Exhibit at HostingCon 2011

HostingCon 2011 – San Diego, California
August 8-10, 2011
San Diego Convention Center

We’re very excited to be exhibiting at this year’s HostingCon in San Diego. Four of us will be there (Rob, Sean, Lisa and Jessica), so if you’re in the neighborhood we’d love to see you! Stop by booth #225 to see what we’ve got planned for this year!!

HostingCon discount:
As an added bonus, we’re able to offer you admission to HostingCon at a significant discount. Right now you’ll notice at www.HostingCon.com that you can save up to $160 off the price of admission. But if you use promotion code DemoWolf2011 when you register, you’ll save up to $60 MORE… for a total savings of $220 off the price of admission!

So join us in San Diego… we’d love to see you there!

 

Posted in Company News | Leave a comment

DemoWolf releases 5 new series of Voice Tutorials

We’ve just released 5 new series of voice tutorials (45 voice tutorials in total). These tutorials are meant for web hosting providers to display in their websites, to help support their customers. These new tutorials show customers how to setup email accounts on an iPad, and the ins and outs of four popular browsers: Google Chrome, Internet Explorer, Firefox and Safari.

iPad email VOICE series (8 tutorials)

Google Chrome VOICE series (9 tutorials)

Mozilla Firefox VOICE series (10 tutorials)

Internet Explorer VOICE series (8 tutorials)

Safari VOICE series (10 tutorials)

Remember these are VOICE tutorials. They are similar to our non-voice versions, except that they have audio voice narration by a professional voice artist included (her name is Anne). You can sample these new tutorials, and all 5,000+ available hosting-related tutorials at http://www.demowolf.com/hosting-tutorials.php

 

Posted in Newest Tutorials | Leave a comment

How to link directly to a single tutorial

This has been asked several times in support, so I thought it would be good to include it here. There is an easy way to link directly to a tutorial from your emails, another web page, etc… instead of referring your customers to your Tutorial Viewer and telling them to “find” a specific tutorial.

This applies to both Purchasers and Subscribers… anyone who is using the Tutorial Viewer (which ALL subscribers are, but for purchasers it is optional).

Simply put, The links on dw-tutorials.php will function on any page of your site. Right-click one of the tutorial titles and use Copy Link Location or your browser’s equivalent to copy the link for the tutorial you want.

For example:

http://www.yourdomain.com/tutorials/viewer/demo.php?id=872&series=50

You can also link to a specific series:

http://www.yourdomain.com/tutorials/dw-tutorials.php?series=50

You can also customize viewer/templates/demo.tpl so that demo.php looks like any other part of your site, that way when you link directly to a video it’s not on a blank white page.

Hope that helps!

Posted in Instructions/Guides | Leave a comment

Getting Started

So, you’ve ordered your tutorials, but don’t know what to do next? You should read through the appropriate Getting Started Guide.

 

Getting Started Guide for Subscribers:

http://www.demowolf.com/clients/knowledgebase.php?action=displayarticle&id=14

 

Getting Started Guide for Purchasers:

http://www.demowolf.com/clients/knowledgebase.php?action=displayarticle&id=15

 

 

Posted in Instructions/Guides | Leave a comment

How to re-order your series and tutorials in your viewer

I have added a new file to the Dynamic Tutorial Viewer – overrides.php in the includes/ directory – that allows you to reorder the series and demos, hide them, override their titles, as well as inject text between certain series & demos.

There will eventually be a simple interface that will produce this file for you, but until then, you should find it easy enough to create.

You’ll probably want to clear the file of the examples, or just make sure you don’t put the code inside the comment tags. (The comment tags I’ve used are /* and */. Anything inside those won’t be executed by PHP.)

You will need the numeric ID of the demo or series you’d like to affect. The easiest way to find a demo or series ID is to hover over its link and look in the URL. You will see something similar to these examples:

http://www.yourdomain.com/viewer/tutorials.php?series=39

http://www.yourdomain.com/viewer/demo.php?id=710&series=39

Series IDs show up as series=XX, demo IDs show up as id=XX.

So, if you want to hide series #39 and #40, you would put:

$hide_series = array(39, 40);

 

Hiding demos works the same way:

$hide_demos = array(710, 715, 302, 333);

 

To change the order of series and demos, you will need to list all of the IDs in the order you want. Any series/demos whose IDs aren’t listed will be appended to the end of the list.

$sort_series = array(180, 152, 182);
$sort_demos[152] = array(2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462);

 

To change the titles of certain series/demos, use $series_titles and $demo_titles:

$series_titles = array(
39 => "Configuring Email series OVERRIDDEN",
40 => "Example Series"
);

 

To insert arbitrary text AFTER a series or demo, put it in $text_after_series / $text_after_demo:

$text_after_series = array(
39 => "<b>This can be random HTML</b>, a list of custom tutorials, or whatever else you want.",
);

 

The variables $text_before_series and $text_before_demo work exactly the same way:

$text_before_series = array(
40 => "This will show up after Series 39 but before Series 40."
);

 

 

Posted in Instructions/Guides | Leave a comment

Purchased Demos in a Subscription

If you have a subscription, you’ve purchased demos in the past, and you want them to show up next to the demos to which you’re subscribing, there is a way to do that.

First, contact us and we’ll add all the series you’ve purchased to your account. Once we’ve done that, you will see an order appear under My Purchases in the Client Area. You won’t be able to generate that order again, but having it there will give you access to create a Tutorial Viewer for those series.

You will need to create a Tutorial Viewer with the same Display Options as your subscription. Make sure to create a Dynamic Tutorial Viewer; the Static Viewer is not compatible with subscriptions. Then, download and extract that Tutorial Viewer. There are two files inside that you need: includes/purchased_demos.new.php and js/dw-display-options.js. (The .js file is only needed if you’ll be using one of the Display Options that uses JavaScript, such as Colorbox and Accordion.)

Rename the .new.php file to purchased_demos.php, and upload it to the includes/ directory of your subscription. This file will automatically be included by the Tutorial Viewer if it exists.

dw-display-options.js can be uploaded as is to the js/ directory of your subscription. You then need to modify the tutorials.tpl file to include the JS file you just uploaded. After {{head}} but before </head>, put:

<script type="text/javascript" src="js/dw-display-options.js"></script>

You will also need to add a line to your subscription’s includes/conf.php file, indicating where (relative to the tutorial viewer) your purchased demos actually are. If your tutorials are in a subdirectory of the Tutorial Viewer folder called tutorials/, you would put:

$_CONF['demo_path'] = "tutorials/";

Be sure to put that line before the closing PHP tag ( ?> ), or else PHP will not be aware of that variable.

That’s all there is to it! Your purchased demos should now show up alongside your subscription. Whenever someone views one of the purchased demos, that view will not be logged (unlike the subscription views).

If you need further assistance or if any parts of these instructions were unclear, please just let us know.

Posted in Instructions/Guides | Leave a comment

Changing your Primary Server

Our system is designed with redundancy in mind. That is, if the primary server that your Tutorial Viewer retrieves your tutorials from ever goes down, your Tutorial Viewer will automatically try a backup server after 5 seconds of no response from the primary server. Your Tutorial Viewer will then continue to use the backup server for 2 hours before trying the primary server again. An exact copy of your tutorials is included on at least 2 servers, so if this ever does happen, the FIRST person only who tries to view a tutorial will be delayed 5 seconds before the tutorial will display. Other than that, no tutorial down time will be experienced.

This guide is for those of you who would rather use our backup server as your primary server, and our primary server as your backup. Our primary server is located in Chicago, USA while our backup server is in London, UK. If your server is located closer to the UK server, then you may want to do this procedure. It will result in slightly faster load times of your tutorials.

If you’d rather use our new server as your primary server, you must update your configuration file (conf.php) which is located in the /includes folder of your Tutorial Viewer files. Inside the $_CONF array, a few lines down, you will see an entry for each server, like this:

'servers' =>
array (
0 =>
array (
'url' => 'http://www.demowolf.com/dwbase/respond.php',
'down' => false,
'last_attempt' => 0,
),
1 =>
array (
'url' => 'http://server2.demowolf.com/dwbase/respond.php',
'down' => false,
'last_attempt' => 0,
),
),

To change which server gets connected to first – your primary server – simply renumber the servers. “0 =>” becomes “1 =>”, “1 =>” becomes “0 =>”:

'servers' =>
array (
1 =>
array (
'url' => 'http://www.demowolf.com/dwbase/respond.php',
'down' => false,
'last_attempt' => 0,
),
0 =>
array (
'url' => 'http://server2.demowolf.com/dwbase/respond.php',
'down' => false,
'last_attempt' => 0,
),
),

Once you’ve made this change, save your conf.php file and upload it to your server. Your Tutorial Viewer will now look at our backup server first, and use our primary server as your backup.

Any questions, just let us know.

 

Posted in Instructions/Guides | Leave a comment

WHMCS Integration and Importer

Integration and Importer for WHMCS

We have just finished developing a website integration option for our Tutorial Viewer for both WHMCS and Kayako. These integration options are for those of you that just want the Tutorial Viewer to be integrated seamlessly with your helpdesk. You will essentially be wrapping your existing WHMCS / Kayako theme around the Tutorial Viewer.

Or, you might prefer to use our new Importer, which creates an article in WHMCS / Kayako for every series / tutorial.
All DemoWolf customers receive full access to the integration options and importer. The importer has been added to the Tutorial Viewer ZIP file you download from the Client Area. Purchasers will need to be sure to set their Tutorial Viewers to Dynamic mode; the Static Tutorial Viewer does not provide you with the importer.

You do not need to perform the WHMCS Integration steps if you simply want to run the Importer.

 

WHMCS Integration

1. Set your Tutorial Viewer’s run mode to WHMCS Integration.

2. Download the latest Tutorial Viewer files from the Client Area and upload them to your server.

3. For the purpose of these instructions, we have WHMCS installed in /clients and the tutorial viewer in a subfolder of WHMCS, /clients/viewer/

4. Within the Tutorial Viewer files, you will see a folder named “resources”. This contains a folder named “integration” and in it, another folder, “whmcs”.

  • You will need to copy dw-tutorials.tpl to your WHMCS theme’s templates folder, i.e. templates/default/
  • The other file, dw-tutorials.php, is what your clients will use to access the Tutorial Viewer. You can rename the file to whatever you want.
    • If you rename this file, be sure to update the $tutorials_php variable at the top of the file; it should always match the name of that file.
    • Below $tutorials_php, you’ll see another variable: $path_to_dw. This variable must contain the relative path from WHMCS to the Tutorial Viewer; in our case, that’s viewer/. Be sure to put a trailing slash on the end of the path. You should never put a filesystem path here (such as /home/user/public_html/).

    5. After making any modifications to dw-tutorials.php, upload the file to the root directory of WHMCS.

    6. You will need to modify your WHMCS theme’s header.tpl file. Right before the </head> tag, add the following:

    {if $dw_head}
    {$dw_head}
    {/if}

    7. You will also need to add an entry to the homepage.tpl file linking to dw-tutorials.php (or whatever you’ve called it). If you need any assistance with this, let us know.

      a. We’ve provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder.

    8. That’s it! Your Tutorial Viewer should now look just like any other area of your WHMCS installation.

     

    DemoWolf Importer

    Within the Tutorial Viewer files, you will see a folder named “resources”. In it, there is a folder called “importer”. This is what you will run to import your demos into your knowledgebase.

    Note: If you’d like to insert identical text before and/or after every tutorial, you can do so by editing the resources/importer/templates/demo.tpl file. Make sure you leave {{demo}} in there somewhere or else the demos will not show up.

    1. Upload the entire resources/ folder to the Tutorial Viewer folder on your server.

    2. Before you can run the Importer, you must remove the importer.lock file (in the importer folder).

    3. Then, navigate to the resources/importer/ folder in your web browser.

    4. The importer is a four-step process. Read over the instructions and fill out the fields appropriately.

      a. Step One asks you where you’ll be importing and where your tutorial files are located.
      b. Step Two lets you customize the way the tutorials will show up, etc.
      c. Step Three is where you choose which series to import. We recommend you only import one series at first, in case of any problems and to ensure you like your chosen settings.
      d. Step Four is the importing phase. Barring any errors, after this step your demos should have been imported into your knowledgebase.

    5. If you chose the Play Button option, you will need to ensure there is an image within the WHMCS or Kayako folder named images/play.png. There are a few .png images in the resources/importer/images/ folder that you might want to use, or feel free to use your own.

    6. If you’ve chosen to use the Colorbox option, you will need to perform one more step.

      a. Be sure to replace any instances of /clients/viewer/ below with whatever you entered for “URI to the Tutorial Viewer” in Step One of the import process.
      b. For WHMCS: Open up your WHMCS theme’s header.tpl file and add the following, right before the </head> tag:
      <link type="text/css" rel="stylesheet" href="/clients/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/clients/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/clients/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/clients/viewer/request.php?type=js"></script>
      If you have imported your tutorials and are also using the WHMCS Integration option described above, you should use the following code instead:
      {if $dw_head}
      {$dw_head}
      {else}
      <link type="text/css" rel="stylesheet" href="/clients/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/clients/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/clients/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/clients/viewer/request.php?type=js"></script>
      {/if}

    That’s it! Your demos should now be imported into WHMCS.

    Posted in Instructions/Guides | Leave a comment

    Integration & Importer for Kayako 4

    Integration is for those of you that just want the Tutorial Viewer to be integrated seamlessly with your helpdesk. You will essentially be wrapping your existing Kayako theme around the Tutorial Viewer.

    Or, you might prefer to use our Importer, which creates an article in Kayako for every series / tutorial.

    All DemoWolf customers receive full access to the integration options and importer. The importer has been added to the Tutorial Viewer ZIP file you download from the Client Area. Purchasers will need to be sure to set their Tutorial Viewers to Dynamic mode; the Static Tutorial Viewer does not provide you with the importer.

    You do not need to perform the Kayako Integration steps if you simply want to run the Importer.

     

    Kayako 4 Integration

    1. Set your Tutorial Viewer’s run mode to Kayako Integration.

    2. Download the latest Tutorial Viewer files from the Client Area and upload them to your server.

    3. For the purpose of these instructions, we have Kayako installed in /kayako and the tutorial viewer in a subfolder of Kayako, /kayako/viewer/

    4. Within the Tutorial Viewer files, you will see a folder named “resources”. This contains a folder named “integration” and in it, another folder, “kayako4″.

      a. You’ll need to upload everything inside this folder to the root directory of your Kayako installation. If your Tutorial Viewer is anywhere except in a subfolder named “viewer/”, you will also need to update a PHP variable in dw-tutorials.php:

      $path_to_dw must contain the relative path from Kayako to the Tutorial Viewer; in our case, that’s viewer/. Be sure to put a trailing slash on the end of the path. You should never put a filesystem path here (such as /home/user/public_html/).

    5. Go to your Kayako Admin Dashboard. In the Options menu at left, click Modules. You will see a new Module called Video Tutorials. Click its name, then click Install. This will create and enable a Video Tutorials widget, which you can control on the Widgets page. By default, the Widget will show up on your Kayako homepage and in the main menu.

      a. Each widget has two icons, so you’ll need to upload some for your new Video Tutorials widget. We’ve provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder. The Kayako 4 integration script requires that the icons be named icon_widget_tutorials.png and icon_widget_tutorials_small.png and be placed in your theme’s images/ path. For the default theme, you’ll want to use the 35×35 and 16×16 transparent PNG files.

    6. Next you will need to modify your Kayako theme’s header template. Again in the Options menu at left, click Templates, then Groups.

      a. View the Templates for whichever template group you’re using.
      b. Under General, you’ll see a template named header. Edit it.
      c. Directly before this line: 

      </head>

      Add:

      <{if $dw_head}><{$dw_head}><{/if}>

    7. That’s it! Your Tutorial Viewer should now look just like any other area of your Kayako installation.

     

    DemoWolf Importer

    Within the Tutorial Viewer files, you will see a folder named “resources”. In it, there is a folder called “importer”. This is what you will run to import your demos into your knowledgebase.

    Note: If you’d like to insert identical text before and/or after every tutorial, you can do so by editing the resources/importer/templates/demo.tpl file. Make sure you leave {{demo}} in there somewhere or else the demos will not show up.

    1. Upload the entire resources/ folder to the Tutorial Viewer folder on your server.

    2. Before you can run the Importer, you must remove the importer.lock file (in the importer folder).

    3. Then, navigate to the resources/importer/ folder in your web browser.

    4. The importer is a four-step process. Read over the instructions and fill out the fields appropriately.

      a. Step One asks you where you’ll be importing and where your tutorial files are located.
      b. Step Two lets you customize the way the tutorials will show up, etc.
      c. Step Three is where you choose which series to import. We recommend you only import one series at first, in case of any problems and to ensure you like your chosen settings.
      d. Step Four is the importing phase. Barring any errors, after this step your demos should have been imported into your knowledgebase.

    5. If you chose the Play Button option, you will need to ensure there is an image within the Kayako folder named images/play.png. There are a few .png images in the resources/importer/images/ folder that you might want to use, or feel free to use your own.

    6. If you’ve chosen to use the Colorbox option, you will need to perform one more step.

      a. Go to your Admin Dashboard, then in the Options menu at left, click Templates, then Groups.
      b. View the Templates for whichever template group you’re using.
      c. Under General, you’ll see a template named header. Edit it.
      d. Be sure to replace any instances of /kayako/viewer/ below with whatever you entered for “URI to the Tutorial Viewer” in Step One of the import process. Right before </head>, add:
      <link type="text/css" rel="stylesheet" href="/kayako/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/kayako/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/kayako/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/kayako/viewer/request.php?type=js"></script>

      If you have imported your tutorials and are also using the Kayako Integration option described above, you should use the following code instead:

      <{if $dw_head}>
      <{$dw_head}>
      <{else}>
      <link type="text/css" rel="stylesheet" href="/kayako/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/kayako/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/kayako/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/kayako/viewer/request.php?type=js"></script>
      <{/if}>

    That’s it! Your demos should now be imported into Kayako.

    Posted in Instructions/Guides | Leave a comment

    Integration & Importer for Kayako 3

    Integration & Importer for Kayako 3

    These instructions apply to Kayako version 3. Click here for Kayako 4 instructions.

    Integration is for those of you that just want the Tutorial Viewer to be integrated seamlessly with your helpdesk. You will essentially be wrapping your existing Kayako theme around the Tutorial Viewer.

    Or, you might prefer to use our new Importer, which creates an article in Kayako for every series / tutorial.

    All DemoWolf customers receive full access to the integration options and importer. The importer has been added to the Tutorial Viewer ZIP file you download from the Client Area. Purchasers will need to be sure to set their Tutorial Viewers to Dynamic mode; the Static Tutorial Viewer does not provide you with the importer.

    You do not need to perform the Kayako Integration steps if you simply want to run the Importer.

    Kayako Integration

    1. Set your Tutorial Viewer’s run mode to Kayako Integration.

    2. Download the latest Tutorial Viewer files from the Client Area and upload them to your server.

    3. For the purpose of these instructions, we have Kayako installed in /kayako and the tutorial viewer in a subfolder of Kayako, /kayako/viewer/

    4. Within the Tutorial Viewer files, you will see a folder named “resources”. This contains a folder named “integration” and in it, another folder, “kayako3″.

      a. The only file in here is named dw-tutorials.php. This is what your clients will use to access the Tutorial Viewer. You can rename the file to whatever you want.

      i. If you rename this file, be sure to update the $tutorials_php variable near the top of the file; it should always match the name of that file.
      ii. Below $tutorials_php, you’ll see another variable: $path_to_dw. This variable must contain the relative path from Kayako to the Tutorial Viewer; in our case, that’s viewer/. Be sure to put a trailing slash on the end of the path. You should never put a filesystem path here (such as /home/user/public_html/).

    5. After making any modifications to dw-tutorials.php, upload the file to the root directory of Kayako.

    6. You will need to modify your Kayako theme’s header template. Go to your Admin Dashboard, then in the Options menu at left, click Templates, then Manage Groups.

      a. View the Templates for whichever template group you’re using.
      b. Under General, you’ll see a template named header. Edit it.
      c. Before this line: 

      <{if $ismodernbill == false && $ismodernbillv5 == false && $iswhmcs == false}></head>

      Add:

      <{if $dw_head}><{$dw_head}><{/if}>

       

    7. You will also need to add an entry to Kayako’s index page linking to dw-tutorials.php (or whatever you’ve called it). You’d do this by editing one of Kayako’s files: includes/Widgets/widgets.php. Open this file. Roughly halfway down the page, you will see code similar to the following. You will need to add everything after:
    // DemoWolf Integration

    // ======= KNOWLEDGEBASE =======
    if ($module->isRegistered(MODULE_KNOWLEDGEBASE) && $_SWIFT["settings"]["kb_enableclient"] == 1 && $_SWIFT["user"]["permissions"]["perm_canviewknowledgebase"] != "0")
    {
    $_widgets[$index]["icon"] = $_SWIFT["themepath"]."knowledgebase.gif";
    $_widgets[$index]["title"] = $_SWIFT["language"]["knowledgebase"];
    $_widgets[$index]["description"] = $_SWIFT["language"]["desc_knowledgebase"];
    $_widgets[$index]["link"] = iif(defined("ISMODERNBILL"), "user.php?op=menu&tile=faq&_m=knowledgebase&_a=view", "index.php?_m=knowledgebase&_a=view");
     

    $template->assign("cansearch", true);
    $template->assign("kbcansearch", true);

    $index++;

    // DemoWolf Integration
    $_widgets[$index]["icon"] = $_SWIFT["themepath"] . "tutorials.gif";
    $_widgets[$index]["title"] = $_SWIFT["language"]["tutorials"];
    $_widgets[$index]["description"] = $_SWIFT["language"]["desc_tutorials"];
    $_widgets[$index]["link"] = "dw-tutorials.php";

    $index++;
    }

      a. Customize $_widgets[$index]["icon"] to whatever image you’d like to use. It should go in your theme’s image folder, i.e. themes/your_theme/.
      b. We’ve provided you two possible icons in several different sizes and formats, on either a transparent or white background. You might want to use one of those, or feel free to use your own. See the resources/integration/icons/ folder.
      c. Customize $_widgets[$index]["link"] to whatever you named dw-tutorials.php.

    8. Finally, you must enter the text to show for the Widget you just added to your Kayako homepage. Return to the Admin panel, then go to Options > Languages > Manage Phrases.

      a. Click Insert Phrase.
      b. Create a new phrase with Identifier set to tutorials. Section should be default. Text is whatever title you want, such as “Video Tutorials”.
      c. Then create another new phrase. Identifier: desc_tutorials, Section: default. Text could be something like “Watch video tutorials on a variety of topics.”

    9. That’s it! Your Tutorial Viewer should now look just like any other area of your Kayako installation.

    DemoWolf Importer

    Within the Tutorial Viewer files, you will see a folder named “resources”. In it, there is a folder called “importer”. This is what you will run to import your demos into your knowledgebase.

    Note: If you’d like to insert identical text before and/or after every tutorial, you can do so by editing the resources/importer/templates/demo.tpl file. Make sure you leave {{demo}} in there somewhere or else the demos will not show up.

    1. Upload the entire resources/ folder to the Tutorial Viewer folder on your server.

    2. Before you can run the Importer, you must remove the importer.lock file (in the importer folder).

    3. Then, navigate to the resources/importer/ folder in your web browser.

    4. The importer is a four-step process. Read over the instructions and fill out the fields appropriately.

      a. Step One asks you where you’ll be importing and where your tutorial files are located.
      b. Step Two lets you customize the way the tutorials will show up, etc.
      c. Step Three is where you choose which series to import. We recommend you only import one series at first, in case of any problems and to ensure you like your chosen settings.
      d. Step Four is the importing phase. Barring any errors, after this step your demos should have been imported into your knowledgebase.

    5. If you chose the Play Button option, you will need to ensure there is an image within the Kayako folder named images/play.png. There are a few .png images in the resources/importer/images/ folder that you might want to use, or feel free to use your own.

    6. If you’ve chosen to use the Colorbox option, you will need to perform one more step.

      a. Be sure to replace any instances of /clients/viewer/ below with whatever you entered for “URI to the Tutorial Viewer” in Step One of the import process.
      b. For Kayako: Go to your Admin Dashboard, then in the Options menu at left, click Templates, then Manage Groups.
      c. View the Templates for whichever template group you’re using.
      d. Under General, you’ll see a template named header. Edit it.
      e. Before this line: 

      <{if $ismodernbill == false && $ismodernbillv5 == false && $iswhmcs == false}></head>

      Add:

      <link type="text/css" rel="stylesheet" href="/clients/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/clients/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/clients/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/clients/viewer/request.php?type=js"></script>

      If you have imported your tutorials and are also using the Kayako Integration option described above, you should use the following code instead:

      <{if $dw_head}>
      <{$dw_head}>
      <{else}>
      <link type="text/css" rel="stylesheet" href="/clients/viewer/js/colorbox.css" />
      <script type="text/javascript" src="/clients/viewer/js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="/clients/viewer/js/jquery.colorbox.js"></script>
      <script type="text/javascript" src="/clients/viewer/request.php?type=js"></script>
      <{/if}>

    That’s it! Your demos should now be imported into Kayako.

    Posted in Instructions/Guides | Leave a comment