FuseDesk Help Desk and Messaging Platform

Creating New Cases with the FuseDesk WordPress Plugin

Once you’ve installed FuseDesk’s free WordPress plugin, to allow folks to open a new support case, use the [fusedesk_newcase] shortcode on a page. This will display a form to create a new case.

[fusedesk_newcase] works perfectly by itself, but also supports the following optional parameters:

Again, all of these parameters are optional but they allow you to override any of the defaults.

An example to not show the name or email if present, changing the new case button text and change the name text:
[fusedesk_newcase hideknowndata="true" nametext="Primary Contact" buttontext="Get Help!" /]

Whatever content you put between [fusedesk_newcase] and [/fusedesk_newcase] tags will be added into the case details.

For example, if you wanted to include some hidden data about the customer, you could put a hidden input inside, like
[fusedesk_newcase]<input type="hidden" name="website" value="http://members.mysite.com/">[/fusedesk_newcase]

You could also add some additional options and fields, for example:
[fusedesk_newcase]Order #: <input type="text" name="order_number">[/fusedesk_newcase]

You could even go all out and add in a drop down, like:
[fusedesk_newcase]<select name="cruise_type"> <option value="Bahamas">Bahamas<option>
<option value="Alaska">Alaska<option>
<option value="Mediterranean">Mediterranean<option>
</select>[/fusedesk_newcase]

If you name your additional fields with underscores, like cruise_type, operating_system, favorite_place_to_hike, etc…, we’ll automatically translate those to title case, i.e. “Cruise Type”, and include them all in the case details.

Note: The examples above are using HTML input fields. These need to be added by editing your page in HTML mode.

Second Note: If you include any additional content pre above and you turn table output on, you’ll need to put your additional content in table rows and cells with <tr> and <td> tags

To style your form and form elements, either pass in the style parameter or class parameter or add entries for each of our elements into your style sheet. Pre-set IDs and classes include:

Exit mobile version