Configuring Custom Fields in JEvents Club Addon

Size: px
Start display at page:

Download "Configuring Custom Fields in JEvents Club Addon"

Transcription

1 Configuring Custom Fields in JEvents Club Addon With this new addon you will be able to create custom fields for your event descriptions and include these fields in your event filters too. You will require the latest build of JEvents for this plugin to work. Install, CONFIGURE and enable the plugin. You must configure the plugin to create the required database table. At the moment this plugin is configured via an xml file - I may (when I have the time) write a configuration component that will allow you do the configuration dynamically. Having said this the format of the XML file is quite simple. Configuring your custom fields 1. Copy the file plugins/jevents/customfields/templates/fieldssample16.xml to plugins/jevents/customfields/templates/fields.xml. If you are using Joomla 1.5 then copy the fieldssample.xml file instead. 2. Edit the file plugins/jevents/customfields/templates/fields.xml to create the custom fields you require. The next section describes the format of the file. Params Tags & Tabbed Editing of Events You can configure your custom fields to appear on separate tabs when editing events. To do this put them into separate <params> tag groups using the group attribute to set the tab name on the event editing screen. The sample files illustrate this process. Param Tags Each field is configured as a "param" tag. For types with no options (jevrtext, jevrtextarea and jevrboolean) these tags are on one line and take the form <param name="field1" type="jevrtext" default="default text" size="20" maxlength="100" required="1" searchable="1" label="text Field" description="text field tooltip" allowoverride="0" filter="1" access="0"/> Note that you MUST have the /> at the end of the line. For fields with options the tags have option tags within them e.g. <param name="field1" type="jevrlist" default="-1" label="select List" required="1" description="select List tool tip" allowoverride="1" filter="1" multifilter="1" filtersize="3" access="0">

2 <!-- select lists MUST have numeric values//--> <option value="-1">select One</option> <option value="0">no</option> <option value="1">yes</option> <option value="2">maybe</option> <option value="3">possibly</option> <option value="4" archive="1">probably</option> </param> Field Names You can have as many fields as you want - but they must all have a unique name (it must not start a number and have no spaces, quotation marks or other special characters). The name is only used internally so a numerically incrementing sequence like there is in the sample file is ideal (e.g. field1, field2, field3 etc.). Field Types The type of the field is held in the "type" attribute value. The choices are: Select List (choose one item from dropdown) = jevrlist Text Box = jevrtext Checkbox = jevrcheckbox Text Area = jevrtextarea Boolean (Yes/No) = jevrboolean Radio boxes = jevrradio Multiple Select List (choose one or more items from dropdown) = jevrmultilist Comment/Instruction Text = jevrinstruction URL field (must include the part) = jevrurl address (automatically cloaked by Joomla javascript cloaking) = jevr File or Image if you have the standardised images and files addon then you can create custom images and files using the custom fields addon. This is particularily helpful when editing locations and managed people = jevrimage and jevrfile Calendar/Date with extra attribute of format e.g. format= %Y-%m-%d = jevrcalendar Notes these are notes that the event creator can create that are not visible on the event detail pages = jevrnotes Joomla user outputs a user's name = jevruser YouTube/Vimeo videos = jevryoutube An example of each of these field types is included in the sample file. More types (including custom types) may be added later. Taking the generic attributes you can use in turn:

3 Default Values (defaultvalue) You can specify a default value for each field in the default attribute. This is the value that is displayed/selected when you first create/edit an event. For the jevrlist, jevrboolean, jevrradio and jevrmultilist types if the default value matches the value of one of your options that that is the option that is initially selected. Label (label) The label attribute is the label that appears alongside the "input" area. This label is also used in the filter if you enable the filter in the jevents filter module. Note that is you set the hiddenvalue attribute then this label is also hidden when the field has the default/empty value (see below). Required/RequiredMessage (required/requiredmessage) A javascript based required field test forces event editors to complete these fields. If the field value continues to match the default value they will get a javascript alert to say which fields need to be completed - the alert message will be the value of the requiredmessage attribute. Description (description) The description attribute is the tooltip that appears on top of the label when you edit an event. No quotation marks are allowed in this attribute. Allow Override (allowoverride) If you specify allowoverride="0" then when you edit a repeat this custom field cannot be altered. If you specify allowoverride="1" then when you edit an event repeat this custom field can be customised for the specific repeat. Filter (filter) If you set filter="1" then this field will appear in the jevents filter module (if you enable the filter 'customfield' in the list of filters) Filter Menus and Modules (filtermenusandmodules) If you set filtermenusandmodules="1" then you can filter JEvents menu items and modules using your custom fields to control which events are displayed. Set the menu and module parameters to do this. Filter Default Value (filterdefault) If you set a value for filterdefault then this will be the value that the filter ignores. This allows you to set a different default value for the field and the filter which can be very for filtering menu and modules with list type fields. Multiple Filter Choices (multifilter & filtersize) If you set multifilter="1" then this field will allow you select more than one option to filter against. Filtersize controls the size of the filter list that is visible in the HTML select list. Searchable (searchable)

4 If you set searchable= 1 then this field will be included in the JEvents search and the Joomla search (via the JEvents search plugin). Access (access) You can set the reader access level for a field. In Joomla 1.6+ this field is a comma separated list of access levels that are allowed see your site's access levels for the ids to use but typically in Joomla the value of 1=public. In Joomla 1.5 it is a one value field (0=public, 1=registered, 2=special). Hidden Value (hiddenvalue) You can set a value for a field so that it is not displayed if this value is set. For example if you only want to show a non-default value to the site visitor. This even works with the jevrinstruction field type so that you can give your event editors instructions that are not visible to the site visitor. Filtering Menus and Modules (filtermenusandmodules) You can filter your menu items and modules if you set this attribute to 1 then when you edit menu items of modules you'll see this custom field in the parameters. Category Restrictions (categoryrestrictions) You can restrict some fields to only be visible for certain categories. You do this using the categoryregstrictions attribute use a comma separated list of category ids. Specifying Options For jevrlist, jevrradio and jevrmultilist types you must specify options for the choices available. These follow the same format as shown earlier The value field must be numeric and unique within the field. Options that are no longer valid Over time some of your options may become out of date - e.g a price range or a conference room may no longer be available. If you set the archive attribute for an option to 1 then the field is no longer available as a choice when editing an event but will be 'translated' into human readable form when you view the event detail. If you simply remove the option then when you view events with the out of date value the value will appear as a blank in the event detail. Special Attributes for specific types For the jevrtext field you can specify a size and maxlength value which controls the size of the input box and the maximum length of the allowed input. For the jevrtextarea field you can specify the number of rows and columns for the field using the rows and cols attributes. Additionally for textarea fields you can allow HTML in the field using the allowhtml= 1 attribute. Formatting Output in the Layout Editing Tool

5 If you use the layout editing tool in JEvents to customise the layout of your event detail page or your list views then you can choose the fields you want to display and where from the drop down list of fields next to the editor. You also have control over what is displayed when the field has no value set or is set to the default. Filtering Your Lists/Calendar If you wish to offer add a filter on these fields in your jevents filter module say yes to "make fields available in lists and calendar" in the plugin config and add the filter to the module using the name "customfield". Don't change your custom field template Finally - note that you can only have one set of custom fields. If you change your template file then existing custom fields from old templates will be ignored. In future releases I may make it possible to have a choice of custom field templates but this could be complex to implement and would probably have a performance impact. Enjoy and feed back requested please

Configuring the JEvents Component

Configuring the JEvents Component Configuring the JEvents Component The JEvents Control Panel's Configuration button takes you to the JEvents Global Configuration page. Here, you may set a very wide array of values that control the way

More information

Manual for CKForms component Release 1.3.4

Manual for CKForms component Release 1.3.4 Manual for CKForms component Release 1.3.4 This manual outlines the main features of the component CK Forms including the module and the plug-in. CKForms 1.3 is the new version of the component for Joomla

More information

Further web design: HTML forms

Further web design: HTML forms Further web design: HTML forms Practical workbook Aims and Learning Objectives The aim of this document is to introduce HTML forms. By the end of this course you will be able to: use existing forms on

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

BreezingForms Guide. 18 Forms: BreezingForms

BreezingForms Guide. 18 Forms: BreezingForms BreezingForms 8/3/2009 1 BreezingForms Guide GOOGLE TRANSLATE FROM: http://openbook.galileocomputing.de/joomla15/jooml a_18_formulare_neu_001.htm#t2t32 18.1 BreezingForms 18.1.1 Installation and configuration

More information

BF Survey Plus User Guide

BF Survey Plus User Guide BF Survey Plus User Guide August 2011 v1.0 1 of 23 www.tamlyncreative.com.au/software/ Contents Introduction... 3 Support... 3 Documentation... 3 Installation New Install... 3 Setting up categories...

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

HTML Forms. Pat Morin COMP 2405

HTML Forms. Pat Morin COMP 2405 HTML Forms Pat Morin COMP 2405 HTML Forms An HTML form is a section of a document containing normal content plus some controls Checkboxes, radio buttons, menus, text fields, etc Every form in a document

More information

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT Table of Contents Creating a Webform First Steps... 1 Form Components... 2 Component Types.......4 Conditionals...

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

Joomla! Override Plugin

Joomla! Override Plugin Joomla! Override Plugin What is an override? There may be occasions where you would like to change the way a Joomla! Extension (such as a Component or Module, whether from the Joomla! core or produced

More information

Hotspot Image Connector Page Guide

Hotspot Image Connector Page Guide Contents Differences between Xerte and Xerte Online Toolkits usage...2 Connector pages...2 The Hotspot Image Connector page...2 Properties of the Hotspot Image Connector Page...3 Hotspot Properties...3

More information

CRM Global Search: Installation & Configuration

CRM Global Search: Installation & Configuration Installation ***Important: It is highly recommended that you first take a backup of your current CRM Application Ribbons prior to importing this solution. Please do so by navigating to Settings > Solutions

More information

Tutorial: Creating a form that emails the results to you.

Tutorial: Creating a form that emails the results to you. Tutorial: Creating a form that emails the results to you. 1. Create a new page in your web site Using the Wizard Interface. a) Choose I want to add a form that emails the results to me in the wizard. b)

More information

Web CMS Forms. Contents. IT Training

Web CMS Forms. Contents. IT Training IT Training Web CMS Forms Contents Forms... Creating a plan... Data types... Data protection... Form Manager... Creating a form... Adding questions... 4 Adding Answers for Radio Button and Drop Lists...

More information

Joomla! template Blendvision v 1.0 Customization Manual

Joomla! template Blendvision v 1.0 Customization Manual Joomla! template Blendvision v 1.0 Customization Manual Blendvision template requires Helix II system plugin installed and enabled Download from: http://www.joomshaper.com/joomla-templates/helix-ii Don

More information

User Guide. Making EasyBlog Your Perfect Blogging Tool

User Guide. Making EasyBlog Your Perfect Blogging Tool User Guide Making EasyBlog Your Perfect Blogging Tool Table of Contents CHAPTER 1: INSTALLING EASYBLOG 3 1. INSTALL EASYBLOG FROM JOOMLA. 3 2. INSTALL EASYBLOG FROM DIRECTORY. 4 CHAPTER 2: CREATING MENU

More information

07 Forms. 1 About Forms. 2 The FORM Tag. 1.1 Form Handlers

07 Forms. 1 About Forms. 2 The FORM Tag. 1.1 Form Handlers 1 About Forms For a website to be successful, it is important to be able to get feedback from visitors to your site. This could be a request for information, general comments on your site or even a product

More information

Plugin for Microsoft Dynamics CRM 2013-2015 For On Premise and Online Deployments. User Guide v. 2.3 April 2015

Plugin for Microsoft Dynamics CRM 2013-2015 For On Premise and Online Deployments. User Guide v. 2.3 April 2015 Plugin for Microsoft Dynamics CRM 2013-2015 For On Premise and Online Deployments User Guide v. 2.3 April 2015 Contents 1. Introduction... 3 1.1. What s new in 2.3?... 3 2. Installation and configuration...

More information

Internet Technologies

Internet Technologies QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies HTML Forms Dr. Abzetdin ADAMOV Chair of Computer Engineering Department aadamov@qu.edu.az http://ce.qu.edu.az/~aadamov What are forms?

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

Product Personalization. User manual

Product Personalization. User manual Product Personalization User manual Table of contents 1. Overview 1.1 General information 1.2 Key features 1.3 About this manual 2. Installation 2.1 Disabling compiler and cache options 2.2 Check your

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Elgg 1.8 Social Networking

Elgg 1.8 Social Networking Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface

More information

Joomla User Manual, Version 1.5

Joomla User Manual, Version 1.5 Joomla User Manual, Version 1.5 Joomla is a content management system that enables you to make and update Web pages easily. Many aspects, including its ease of use and the ability to add to its capabilities,

More information

Do I have to use the blog section of the site? No. Your blog is hidden by default so it won't be available unless you choose to turn it on.

Do I have to use the blog section of the site? No. Your blog is hidden by default so it won't be available unless you choose to turn it on. Agent Website FAQ What are the features/benefits of the new Agent Websites? The Agent Website offering is a feature-rich, WordPress based product that provides individual personalization to the agent,

More information

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send 5. At Repeat Submission Filter, select the type of filtering used to limit repeat submissions by the same user. The following options are available: No Filtering: Skip to Step 7. DotNetNuke User ID: Do

More information

Quick Reference Guide. Version 6.00.08a

Quick Reference Guide. Version 6.00.08a Quick Reference Guide Version 6.00.08a Thanks for choosing the Event Registration for Wordpress. This project has come along way since I first started with version 1.0. I originally tried to find a plugin

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Advanced Training Reliance Communications, Inc.

Advanced Training Reliance Communications, Inc. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before you Begin... 4 Advanced Lists... 4 List Builder... 4 Create a List...

More information

The tool also provides an overview of date criteria set against all items within your module.

The tool also provides an overview of date criteria set against all items within your module. Date Management Tool What does it do? This tool allows tutors to view in one screen when items are available and change dates attached to more than one content item within a module at the same time. For

More information

Turn editing on and under Add an Activity use the drop down list and click on Questionnaire.

Turn editing on and under Add an Activity use the drop down list and click on Questionnaire. Making a Questionnaire or Survey in Moodle Turn editing on and under Add an Activity use the drop down list and click on Questionnaire. Setting up the Questionnaire Name name of the questionnaire and the

More information

Open Source Content Management System JOOMLA

Open Source Content Management System JOOMLA Open Source Content Management System JOOMLA Swapnil S. Chafale MCA Department, GHRIIT Nagpur, (M.S.),India Swapnil.chafale@gmail.com Dr.V.M. Thakare S.G.B. Amravati University, Amravati (M.S.),India vilthakare@yahoo.co.in

More information

User Guide to the Content Analysis Tool

User Guide to the Content Analysis Tool User Guide to the Content Analysis Tool User Guide To The Content Analysis Tool 1 Contents Introduction... 3 Setting Up a New Job... 3 The Dashboard... 7 Job Queue... 8 Completed Jobs List... 8 Job Details

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Copyright EPiServer AB

Copyright EPiServer AB Table of Contents 3 Table of Contents ABOUT THIS DOCUMENTATION 4 HOW TO ACCESS EPISERVER HELP SYSTEM 4 EXPECTED KNOWLEDGE 4 ONLINE COMMUNITY ON EPISERVER WORLD 4 COPYRIGHT NOTICE 4 EPISERVER ONLINECENTER

More information

Web Design and Development ACS-1809. Chapter 13. Using Forms 11/30/2015 1

Web Design and Development ACS-1809. Chapter 13. Using Forms 11/30/2015 1 Web Design and Development ACS-1809 Chapter 13 Using Forms 11/30/2015 1 Chapter 13: Employing Forms Understand the concept and uses of forms in web pages Create a basic form Validate the form content 11/30/2015

More information

Section 2.5.05 Documents. Contents

Section 2.5.05 Documents. Contents Section 2.5.05 Documents Contents Documents... 2 Practice Documents Tab... 3 Unsigned Documents Tab... 7 Uninitialed Documents Tab... 9 Document Sessions Tab... 10 Print Days Documents Tab... 12 Save Templated

More information

<option> eggs </option> <option> cheese </option> </select> </p> </form>

<option> eggs </option> <option> cheese </option> </select> </p> </form> FORMS IN HTML A form is the usual way information is gotten from a browser to a server HTML has tags to create a collection of objects that implement this information gathering The objects are called widgets

More information

Webforms on a Drupal 7 Website 3/20/15

Webforms on a Drupal 7 Website 3/20/15 Jody Croley Jones Webforms on a Drupal 7 Website 3/20/15 A form is a document used to gather specific information from a person. A webform is simply a web page, built to allow the web-reader to enter data

More information

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe.

1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe. CourseWebs Reporting Tool Desktop Application Instructions The CourseWebs Reporting tool is a desktop application that lets a system administrator modify existing reports and create new ones. Changes to

More information

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide Vodafone Business Product Management Group Hosted Services Announcer Pro V4.6 User Guide Vodafone Group 2010 Other than as permitted by law, no part of this document may be reproduced, adapted, or distributed,

More information

Joostrap RWD Bootstrap Template

Joostrap RWD Bootstrap Template Joostrap RWD Bootstrap Template Step by Step Guide to Installing & Set-up Updated 17 th November 2012 Prepared by Philip Locke What is Joostrap?...3 JooStrap & The Basics...3 The Past & How Templating

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

SelectSurvey.NET Basic Training Class 1

SelectSurvey.NET Basic Training Class 1 SelectSurvey.NET Basic Training Class 1 3 Hour Course Updated for v.4.143.001 6/2015 Page 1 of 57 SelectSurvey.NET Basic Training In this video course, students will learn all of the basic functionality

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

More information

Metadata Management CMS Extension. Version 0.90

Metadata Management CMS Extension. Version 0.90 Metadata Management CMS Extension Version 0.90 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or

More information

University of Colorado Denver University Web Services 3

University of Colorado Denver University Web Services 3 STUDENT GUIDE SharePoint 401: Web Forms Course Plan Module 1: An Introduction to SharePoint web forms at CU Denver Learning Objectives Understand the function and customization of web forms at CU Denver

More information

Kaseya 2. User Guide. for VSA 6.3

Kaseya 2. User Guide. for VSA 6.3 Kaseya 2 Ticketing User Guide for VSA 6.3 September 17, 2013 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULA as updated

More information

Kaseya 2. User Guide. Version 7.0. English

Kaseya 2. User Guide. Version 7.0. English Kaseya 2 Ticketing User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as

More information

Application Developer Guide

Application Developer Guide IBM Maximo Asset Management 7.1 IBM Tivoli Asset Management for IT 7.1 IBM Tivoli Change and Configuration Management Database 7.1.1 IBM Tivoli Service Request Manager 7.1 Application Developer Guide Note

More information

Iceberg Commerce Video Gallery Extension 2.0 For Magento Version 1.3, 1.4, 1.5, 1,6

Iceberg Commerce Video Gallery Extension 2.0 For Magento Version 1.3, 1.4, 1.5, 1,6 Iceberg Commerce Video Gallery Extension 2.0 For Magento Version 1.3, 1.4, 1.5, 1,6 User Manual August 2011 Introduction Images are boring, let your customers watch your products in use. Embed Youtube,

More information

Chapter 24: Creating Reports and Extracting Data

Chapter 24: Creating Reports and Extracting Data Chapter 24: Creating Reports and Extracting Data SEER*DMS includes an integrated reporting and extract module to create pre-defined system reports and extracts. Ad hoc listings and extracts can be generated

More information

GalleryAholic Documentation

GalleryAholic Documentation GalleryAholic Documentation After a successful install click onto the module called GalleryAholic. The first drop-down option you will have is asking, where do you want to get your photos from. Your selections

More information

User Guide. Chapter 1. SitePublish: Content Management System

User Guide. Chapter 1. SitePublish: Content Management System User Guide Chapter 1 SitePublish: Content Management System Table of Contents About SharpSchool... 4 About this Guide... 4 Who Should Use this Guide... 4 About SitePublish... 5 Accessing your Website...

More information

A quick guide to. Social Media

A quick guide to. Social Media A quick guide to Social Media In this guide... Learn how to integrate your email marketing with social media to get the most out of online buzz! Use Twitter and Facebook integrations to enable readers

More information

Integrating LivePerson with Salesforce

Integrating LivePerson with Salesforce Integrating LivePerson with Salesforce V 9.2 March 2, 2010 Implementation Guide Description Who should use this guide? Duration This guide describes the process of integrating LivePerson and Salesforce

More information

Getting Started with. Venue & Vendor Guide. Page 1

Getting Started with. Venue & Vendor Guide. Page 1 Venue & Vendor Guide Welcome to Eventective! With your Eventective account, you have access to your listing at anytime to make updates, view and purchase leads, upgrade and renew advertising, correspond

More information

Import Filter Editor User s Guide

Import Filter Editor User s Guide Reference Manager Windows Version Import Filter Editor User s Guide April 7, 1999 Research Information Systems COPYRIGHT NOTICE This software product and accompanying documentation is copyrighted and all

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Exercise 1 : Branding with Confidence

Exercise 1 : Branding with Confidence EPrints Training: Repository Configuration Exercises Exercise 1 :Branding with Confidence 1 Exercise 2 :Modifying Phrases 5 Exercise 3 :Configuring the Deposit Workflow 7 Exercise 4 :Controlled Vocabularies

More information

Dynamic Forms for SharePoint

Dynamic Forms for SharePoint Dynamic Forms for SharePoint Introduction: Alexander Bautz has written several add-ons for SharePoint that make it possible to do advanced development in SharePoint without advanced programming knowledge.

More information

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team Contents Offshore Web Development Company CONTENTS... 2 INTRODUCTION... 3 SMART FORMER GOLD IS PROVIDED FOR JOOMLA 1.5.X NATIVE LINE... 3 SUPPORTED

More information

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

Section 2.5.08 Transaction Codes. Contents. Transaction Codes... 2 Procedures Tab... 3 Adjustments Tab... 5 Non-billing Codes Tab...

Section 2.5.08 Transaction Codes. Contents. Transaction Codes... 2 Procedures Tab... 3 Adjustments Tab... 5 Non-billing Codes Tab... Section 2.5.08 Transaction Codes Contents Transaction Codes... 2 Procedures Tab... 3 Adjustments Tab... 5 Non-billing Codes Tab... 7 V Ā L A N T M E D I C A L S O L U T I O N S, I N C. P O B O X 2 1 4

More information

Web forms in Hot Banana reside on their own pages and can contain any number of other content and containers like any other page on your Website.

Web forms in Hot Banana reside on their own pages and can contain any number of other content and containers like any other page on your Website. Section 1: Web Forms What is a Web Form? Marketing Automation User Guide A Web Form is simply a form located on a web page. Web forms can be created for many purposes, and are typically used to submit

More information

Copyright statement. Sage (UK) Limited, 2011. All rights reserved.

Copyright statement. Sage (UK) Limited, 2011. All rights reserved. New Features Guide Sage 200 v2011 Copyright statement Sage (UK) Limited, 2011. All rights reserved. If this documentation includes advice or information relating to any matter other than using Sage software,

More information

Process Document Campus Community: Create Communication Template. Document Generation Date 7/8/2009 Last Changed by Status

Process Document Campus Community: Create Communication Template. Document Generation Date 7/8/2009 Last Changed by Status Document Generation Date 7/8/2009 Last Changed by Status Final System Office Create Communication Template Concept If you frequently send the same Message Center communication to selected students, you

More information

Compare Versions with Maximizer CRM 2015

Compare Versions with Maximizer CRM 2015 Compare Versions with Group and Enterprise Editions is the fully-featured flexible solution, providing Sales Force Marketing and Workflow Automation, in addition to Customer Service Case Management that

More information

Client Quick Start Guide. A User Guide for New ihomefinder Partners

Client Quick Start Guide. A User Guide for New ihomefinder Partners Client Quick Start Guide A User Guide for New ihomefinder Partners Introduction Congratulations on your decision to integrate ihomefinder tools into your Website. Customers increasingly turn to the Internet

More information

Market Pricing Override

Market Pricing Override Market Pricing Override MARKET PRICING OVERRIDE Market Pricing: Copy Override Market price overrides can be copied from one match year to another Market Price Override can be accessed from the Job Matches

More information

Creating Codes with Spreadsheet Upload

Creating Codes with Spreadsheet Upload Creating Codes with Spreadsheet Upload Ad-ID codes are created at www.ad-id.org. In order to create a code, you must first have a group, prefix and account set up and associated to each other. This document

More information

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how: User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful

More information

Using your Drupal Website Book 1 - Drupal Basics

Using your Drupal Website Book 1 - Drupal Basics Book 1 - Drupal Basics By Karl Binder, The Adhere Creative Ltd. 2010. This handbook was written by Karl Binder from The Adhere Creative Ltd as a beginners user guide to using a Drupal built website. It

More information

CONTACTUS.COM A START GUIDE FOR CREATING YOUR FIRST CONTACT FORM

CONTACTUS.COM A START GUIDE FOR CREATING YOUR FIRST CONTACT FORM Welcome to CONTACTUS.COM A START GUIDE FOR CREATING YOUR FIRST CONTACT FORM We have created this guide especially for you. It s based on the most popular features available in our contact form. If you

More information

Designing and Implementing Forms 34

Designing and Implementing Forms 34 C H A P T E R 34 Designing and Implementing Forms 34 You can add forms to your site to collect information from site visitors; for example, to survey potential customers, conduct credit-card transactions,

More information

Create a survey using Google Forms

Create a survey using Google Forms Create a survey using Google Forms You can plan events, make a survey or poll, give students a quiz, or collect other information in an easy, streamlined way with Google Forms. Google Forms can be connected

More information

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

BT MAGAZINE. JOOMLA 3.x TEMPLATE. Total User Guide Version 1.0. Copyright 2013 Bowthemes.com support@bowthemes.com. www.bowthemes.

BT MAGAZINE. JOOMLA 3.x TEMPLATE. Total User Guide Version 1.0. Copyright 2013 Bowthemes.com support@bowthemes.com. www.bowthemes. 1 BT MAGAZINE JOOMLA 3.x TEMPLATE Total User Guide Version 1.0 Copyright 2013 Bowthemes.com support@bowthemes.com 1 Table of Contents INTRODUCTION... 2 Template Features... 2 Compressed File Contents...

More information

Creating a muli-lingual site

Creating a muli-lingual site Creating a muli-lingual site with Joomla! 1.7.3 Copyright Jean-Marie Simonet (infograf768). This pdf is made available under the Joomla! Electronic Documentation License (JEDL) Joomla 1.7 includes a basic

More information

Kaseya 2. User Guide. Version 1.0

Kaseya 2. User Guide. Version 1.0 Kaseya 2 Kaseya Service Desk User Guide Version 1.0 April 19, 2011 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

SAS. Cloud. Account Administrator s Guide. SAS Documentation

SAS. Cloud. Account Administrator s Guide. SAS Documentation SAS Cloud Account Administrator s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Cloud: Account Administrator's Guide. Cary, NC:

More information

Email Marketing. User Guide. July 2012. Welcome to AT&T Website Solutions SM

Email Marketing. User Guide. July 2012. Welcome to AT&T Website Solutions SM July 2012 Email Marketing User Guide Welcome to AT&T Website Solutions SM We are focused on providing you the very best web hosting service including all the tools necessary to establish and maintain a

More information

Email Mail Merge Using Thunderbird. Bob Booth February 2009 AP-Tbird2

Email Mail Merge Using Thunderbird. Bob Booth February 2009 AP-Tbird2 Email Mail Merge Using Thunderbird. Bob Booth February 2009 AP-Tbird2 University of Sheffield Contents 1. Introduction... 3 2. Installing the Mail Tweak Plug-In... 4 2.1 DOWNLOADING MAIL TWEAK... 4 2.2

More information

Magento Quotation Module User and Installer Documentation Version 2.2

Magento Quotation Module User and Installer Documentation Version 2.2 Magento Quotation Module User and Installer Documentation Version 2.2 1. Overview... 2 2. Installation... 2 2.1 Installation générale... 2 2.1 Installation... 2 2.2 Magento Updates... 3 2.3 Other modules

More information

TheEducationEdge. Export Guide

TheEducationEdge. Export Guide TheEducationEdge Export Guide 102111 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Taleo Enterprise. Taleo Scheduling Center Configuration Guide

Taleo Enterprise. Taleo Scheduling Center Configuration Guide Taleo Enterprise Taleo Scheduling Center Feature Pack 12B April 26, 2012 Confidential Information and Notices Confidential Information The recipient of this document (hereafter referred to as "the recipient")

More information

Ad Hoc Reporting. Usage and Customization

Ad Hoc Reporting. Usage and Customization Usage and Customization 1 Content... 2 2 Terms and Definitions... 3 2.1 Ad Hoc Layout... 3 2.2 Ad Hoc Report... 3 2.3 Dataview... 3 2.4 Page... 3 3 Configuration... 4 3.1 Layout and Dataview location...

More information

Startup Guide. Version 2.3.9

Startup Guide. Version 2.3.9 Startup Guide Version 2.3.9 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

User Manual for Fabrik Master Detail example (Joomla 3.2 version)

User Manual for Fabrik Master Detail example (Joomla 3.2 version) SPI LABORATORY (PTY) LTD Master Detail example (Joomla 3.2 version) Technical Product Issue: 1 Document Status: Draft JFL-URM-03.Fabrik-Tutorial-Master-Detail-JM-32.docIssue: 1 24 December 2013 Page i

More information

This guide provides additional information about topics covered in the webinar

This guide provides additional information about topics covered in the webinar This guide provides additional information about topics covered in the webinar Scan to go there now! Copyright 2012 X.commerce, Inc. All rights reserved. Contents CHAPTER 1: Leveraging Store Content 1

More information

Logi Ad Hoc Reporting Report Design Guide

Logi Ad Hoc Reporting Report Design Guide Logi Ad Hoc Reporting Report Design Guide Version 10.2 Last Updated: May 2012 Page 2 Table of Contents INTRODUCTION... 4 What is Logi Ad Hoc Reporting?... 5 CHAPTER 1 Getting Started... 6 Learning the

More information

OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart

OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart OpenGlobal WorldPay Recurring Payments (FuturePay) for VirtueMart Instruction Manual Introduction This VirtueMart 2.x/3.x payment plugin allows VirtueMart payment transactions to be conducted using the

More information

Getting Started with Sites at Penn State

Getting Started with Sites at Penn State About Sites at Penn State Getting Started with Sites at Penn State The Sites at Penn State tool is powered by WordPress.com, a powerful, personal publishing platform that allows you to create a website

More information

Copyright 2010 Netbriefings, Inc. Page1 agendalayout-wr2010.doc

Copyright 2010 Netbriefings, Inc. Page1 agendalayout-wr2010.doc Following presents web pages an event viewer (web audience member) will encounter when attending a Netbriefings event: Event Agenda, Event Viewer and Event Registration. (The appearance of the registration

More information

Contact Manager and Document Tracking. CampusVue Student User Guide

Contact Manager and Document Tracking. CampusVue Student User Guide Contact Manager and Document Tracking CampusVue Student User Guide Campus Management Corporation Web Site http://www.campusmanagement.com/ E-mail Information: Support: E-mail form on Web site support@campusmgmt.com

More information

ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL

ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL ARCONICS CONTENT MANAGEMENT SYSTEM FOR UL MENU OPTION CLASSIFICATION MANAGER Creating a new classification / menu 1. Click Classification manager 2. Click on the plus sign beside WWW to expand the folders

More information