iparts, iparts, & More iparts

Size: px
Start display at page:

Download "iparts, iparts, & More iparts"

Transcription

1 iparts, iparts, & More iparts Tuesday November 29, :30 pm 3:00 pm Troy Stenback ASI Consulting

2 Description With nearly 100 iparts available, it can be difficult and confusing to find the best ipart to fit your organization s needs. Learn how to choose and find the best ipart for the job. You might even discover a helpful ipart that you didn t even know existed!

3 Out of the box Dynamic Content Items (iparts)

4 Commerce Address Selector Auto Pay Instructions Creator Cart Charges Display Cart Checkout Button Link Cart Details Display Confirmation Display Continue Shopping Button Link EFT Gateway Account Administrator Invoice Payment Link Item Creator Open Invoice List Display Order Confirmation Display Payment Creator Payment Method Set Creator Promotion Creator Promotion Manager Recurring Donation Expected Payments Shipping Method Selector Submit Order Button Link

5 Commerce Used in the shopping experience Generally have not been using these iparts individually or in my own content Use the out of the box cart

6 Communities Announcement Configuration Announcements Attachment List Attachment Manager Blog Archive Blog Archive Entries Blog Configuration Blog Home Blog List Blog List Item Comment Configuration Comment List Comment List Item Community Breadcrumb Community Configuration Community Description Community List Community Recent Activity Community Roster Community Sidebar Helper Community Summary Discussion Forum Configuration Discussion Forum Home Discussion Forum List Discussion Forum List Item Entry Configuration Entry Home Entry List Entry List Item Image Manager Preferences Recent Activity Resource Library Security Subscriber List Subscription Link Topic Configuration Topic Home Topic List Topic List Item Wiki Configuration Wiki Contents Wiki Home Wiki List Wiki List Item

7 Communities Used in the Communities section of the site Simple iparts so configuration options are limited Uses GUID to control which part of the Community to display Use the out of the box pages and modify (Save As) as needed

8 Contact Address Mapper Change Logon Password Communication Preferences Editor Contact Account Creator Contact Address Contact Address Editor Contact Communities Contact Mini Profile Contact Name Contact Profile Picture Contact Sign In Contact Status Contact Status Editor Display Name Editor Mini Group List Display Social Profile List Creator

9 Contact Used for Profile and Directory pages ID value comes from: URL for the ID value to display information for If no ID in the URL, then the OBO selected record will be used Otherwise the logged in user Configuration is limited to what the ipart gives you

10 Content Big Button Panel Content Block Content Collection Organizer Content File Content HTML Content Link Content Page Break Content Reference Content Tagged List Data Showcase Panel Collection Editor Panel Editor Slideshow

11 Content Used to create your website Deals with content and navigation mainly Data Showcase is the exception, used to pull data from imis and display on web Panel Editor and Panel Collection Editor should probably be in Contact since they relate to Contact data, not to content

12 Groups Group List Editor

13 Groups Group List Editor (GLE) has limited usage Committee/Chapter examples Replacing GLE with IQA

14 Offering Automatic Payment Enrollments Gift Aid Tax Reclaim Batch Invoice Payment Processing Donation Creator EFT Batch Status Event Calendar Event Display Event Program Display Function Display General Product Display Gift Aid Declaration Product Display Product Display List Recurring Donation Commitments Recurring Donation Commitments Public View Recurring Donation Creator Recurring Donation Pledge Creator Tribute Gift Editor

15 Offering Used in the shopping experience Generally have not been using these iparts individually or in my own content Use the out of the box pages Use Product Display to show individual products or dues billing options for join processes

16 Utility AddThis For Social Networking Advanced Accounting Console Advanced Search Alert Display Change History Display Common Search Communication Creator Embedded Web Page Engagement Score Display File Import for Web Services File Viewer for Web Services Friendraising Importer Friendraising Mapping Interaction Log Log Viewer for Web Services NRDS Configuration NRDS Sync Buttons NRDS Sync By ID Package Installer Progress Tracker Query Chart Viewer Query Menu Query Profile Picture List Recent History Related Items Report Display Social Share SSRS Report Summary Display YouTubeVideo

17 Utility Provide a broad range of functions Some are specialized or system functions

18 Deconstructing Staff and Quick Start Sites

19 Reverse Engineering Using Easy Edit Using the Staff Site Using Content Browser ipart List

20 Troy s Favourite Dynamic Content Items (iparts)

21 Content Big Button Panel Content Block Content Collection Organizer Content File Content HTML Content Link Content Page Break Content Reference Content Tagged List Data Showcase Panel Collection Editor Panel Editor Slideshow

22 Content Collection Organizer Used to create a tabs interface Commonly used in member profile pages Can be used in a wizard mode to create a stepped process Dynamic vs. Static Applying security

23 Content HTML Using jquery, javascript and CSS Label iparts that are code only since they will have no visible output in the preview When using jquery snippets from the web replace $ with jquery Considerations for responsive design Bootstrap grids Image sizes

24 Content Tagged List NAC Canada Announcements Show on Web Until Stories Music Hymnals Search within Formatting of Tagged Layouts AFCOM Security Filter by format Filter by category Search within Filter by navigation item AAAE Using like an include file

25 Data Showcase Potentially the most powerful ipart but least understood Query SOA objects and format the output with HTML Requires knowledge of SOA: Membership Join list and the Event Title from the Event Specific Staff dashboard are examples

26 Panel Editor Create user defined tables and fields Dynamic Data Sources vs Customizer Single instance panels represent data that can only be once per object (e.g. Birth date) Multi instance panels represent data that can be repeated (e.g. Volunteer hours, Education credits) Using Customizer tables Change logging Ability to pull from multiple single instance sources Naming conventions for panels

27 Utility AddThis For Social Networking Advanced Accounting Console Advanced Search Alert Display Change History Display Common Search Communication Creator Embedded Web Page Engagement Score Display File Import for Web Services File Viewer for Web Services Friendraising Importer Friendraising Mapping Interaction Log Log Viewer for Web Services NRDS Configuration NRDS Sync Buttons NRDS Sync By ID Package Installer Progress Tracker Query Chart Viewer Query Menu Query Profile Picture List Recent History Related Items Report Display Social Share SSRS Report Summary Display YouTubeVideo

28 Alerts Uses IQA to check for certain conditions and then displays a message Use out of the box alerts for Dashboards as well as individuals and organizations and/or Create your own alerts with the advanced process automation license

29 Alert Display Standard alerts Creating dynamic content (AFCOM) Creating pathing stories Come to my Process Automation session next for more info

30 Common Search Keyword search Event List Product list Tag Restricted NAC Hymnals AFCOM Library

31 Progress Tracker Show: Counts Progress bar Goal amount Percent complete Alias names of the fields in your iqa are key. You must have all 3 aliases defined, even if you do not plan to show them. Sum_Total End_Date Goal_Amount URL Variables Performance considerations

32 Progress Tracker Use CSS classes to stylize the display Use URL parameters to filter your query Choose the caption options you wish

33 Query Chart Viewer Produce graphs and charts from query results Area Bar - Horizontal Bar - Vertical Bubble Donut Line Pie URL Variables Performance Considerations

34 Query Menu Output options , maps, export SQL Expressions, Views and Functions can be used for more advanced formatting and concatenation of fields Zone CSS classes can modify the output of an ipart in just a specified zone HideIQAElements Showing multiple queries Security on queries Exporting considerations URL and Dynamic variables Aliases URLs in IQA Performance considerations Caching

35 Sample SQL Expressions '<a href=mailto:' + vbocscontact. + '>' + vbocscontact. + '</a>' Website '<a href= + vbocscontact.website + ' target="_blank">' + vbocscontact.website + '<a>' Convert True/False to Yes/No case when vbocsdemotable.binaryfield=1 then 'Yes' else 'No' end Shows Name with link, Title and Birth date in 1 column '<a href="~/party.aspx&id=' + vbocscontact.id + '">' + vbocscontact.fullname + '</a><br>' + vbocscontact.title + '<br/>' + case when vbocscontact.birthdate IS NULL then 'Birth Date: ' else 'Birth Date: ' + CONVERT(VARCHAR(10), vbocscontact.birthdate, 101) end How old are you today? vbocscontact.firstname + ' ' + vbocscontact.lastname + ' is ' +CAST(DATEDIFF(Year,ISNULL(vBoCsContact.BirthDate,GETDATE()),GETDATE()) + (CASE WHEN MONTH(GETDATE()) < MONTH(vBoCsContact.BirthDate)THEN (-1) WHEN MONTH(GETDATE()) = MONTH(vBoCsContact.BirthDate) AND DAY(GETDATE()) < DAY(vBoCsContact.BirthDate) THEN (-1) ELSE 0 END) AS varchar(2)) + ' years old today'

36 Sample SQL Function Directory Function SQL Source =========================== USE [imis_demo] GO /****** Object: UserDefinedFunction [dbo].[fn_directorydetails] Script Date: 06/30/ :53:11 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE function varchar(60)) RETURNS varchar(255) AS /****** * Name : fn_directorydetails * Description : This function returns the , Phone, Fax and Website formatted for the online Directory search * Author : * Date : * Example : dbo.fn_directorydetails ('1445') */ BEGIN as varchar(500) 'E: <A href=mailto:' + + '>' + + '</a> <br>' + 'P: ' + Work_Phone + '<br>' + 'F: ' + Fax + '<br>' + Case when website <> '' then 'W: <A href=' + website + '>click for website</a> <br>' else '' end from Name where ID coalesce(@x,'') End =========================== In IQA you then call it by putting the function in the SQL expression as: dbo.fn_directorydetails(vbocscontact.id)

37 Summary Display Used to output an IQA query with a single result Use to display data in a form with field:value pairs as opposed to a grid format like Query Menu

38 Building Applications

39 Volunteers Review the Volunteers application built out under Community

40 Ask Me Questions?

41 THANK YOU TO OUR SPONSORS FOUNDING PARTNER PLATINUM PARTNERS GOLD PARTNERS SILVER PARTNERS

IQA Advanced. Lori Bertrand C Systems Global

IQA Advanced. Lori Bertrand C Systems Global IQA Advanced Lori Bertrand C Systems Global Advanced IQA Advanced Options in Sources Tab Advanced Options in Filters Tab Advanced Options in Display Tab Advanced Options in Security tab IQA Groups Other

More information

administrative control

administrative control administrative control Powerful membership management features Administrative Control Powerful membership management features Member Management Create and manage member types Approve members via email

More information

4/27/2018 Blackbaud Internet Solutions 4.96 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted

4/27/2018 Blackbaud Internet Solutions 4.96 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted Parts Guide 4/27/2018 Blackbaud Internet Solutions 4.96 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic,

More information

2/21/2018 Blackbaud NetCommunity 7.1 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any

2/21/2018 Blackbaud NetCommunity 7.1 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any Parts Guide 2/21/2018 Blackbaud NetCommunity 7.1 Parts US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Get in Touch Module 1 - Core PHP XHTML

Get in Touch Module 1 - Core PHP XHTML PHP/MYSQL (Basic + Advanced) Web Technologies Module 1 - Core PHP XHTML What is HTML? Use of HTML. Difference between HTML, XHTML and DHTML. Basic HTML tags. Creating Forms with HTML. Understanding Web

More information

SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION

SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION - 1 - SMARTPROS LTD. PROFESSIONAL EDUCATION CENTER USER S GUIDE BANKING EDITION Document version 1.0 - Banking Updated April 20, 2006 SmartPros Banking by SmartPros Ltd. Support: admin@smartpros.com (914)

More information

Release Notes

Release Notes 2100.2.100 Release Notes General Note This release includes an update for.net from 4.0 to 4.6.1. The release needs to be installed on your server, as well as your workstations running any of the Click

More information

Tendenci Core Features the cms for your nonprofit. Pages (Content Manager) Navigation Editor. Stories. Boxes

Tendenci Core Features the cms for your nonprofit. Pages (Content Manager) Navigation Editor. Stories. Boxes The Content Manager allows for immediate website content updates through the user-friendly, WYSIWYG editor. The Content Manager also includes: Pages (Content Manager) Custom titles and URLs Image and graphics

More information

Process Automation & Communications. Jeff Spring, ASI

Process Automation & Communications. Jeff Spring, ASI Process Automation & Communications Jeff Spring, ASI AGENDA Understanding Process Automation and Communications Who is this guy? Why is he up there talking like he knows something? Why does he talk funny?

More information

From Desktop to Staff Site: Making the Change

From Desktop to Staff Site: Making the Change From Desktop to Staff Site: Making the Change Wednesday, April 4, 2018 8:30 AM 12:00 PM Mark L. Jones, CAE ensync Corporation Agenda Understanding the Staff Site Overview Profile Management configuration

More information

MASTERING EVENTS -FROM SETUP TO ONLINE REGISTRATION. imis20 RiSE Events Overview. imis20.2 Events & RiSE Registration features

MASTERING EVENTS -FROM SETUP TO ONLINE REGISTRATION. imis20 RiSE Events Overview. imis20.2 Events & RiSE Registration features MASTERING EVENTS -FROM SETUP TO ONLINE REGISTRATION PRESENTED BY MELISSA MACK, INTUITIVE BUSINESS CONCEPTS AGENDA imis20 RiSE Events Overview imis20.2 Events & RiSE Registration features Advanced Accounting

More information

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1 Payment Registration Software v. 5.00 User Manual Revision Date: 5/20/2014 1 Table of Contents I. Introduction... 4 II. Smith Payment Registration Pro Module... 4 III. Prerequisites... 4 IV. Installing

More information

Kurant StoreSense Quick Start Guide

Kurant StoreSense Quick Start Guide Kurant StoreSense Quick Start Guide Version 5.7.0 2004 Kurant Corporation. Kurant, StoreSense, and the Kurant logo are trademarks of Kurant. All other products mentioned are trademarks of their respective

More information

GET YOUR PROFILE READY!

GET YOUR PROFILE READY! GET YOUR PROFILE READY! To be eligible for a giving day grant, your profile page MUST include the items below: 1. Your organization s logo. (Entered as the medium avatar in the profile page) 2. A description

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list BizForms BizForm (on-line form) Blogs Comment view Recent posts Post archive Blogs comments viewer New blog Blog

More information

How to place an order on CSI s online store

How to place an order on CSI s online store How to place an order on CSI s online store Store website http://store.csionline.org/ 1. Click on account, then log in 2. Create an account or LOGIN using your currently registered email and password.

More information

TAKING EVENT MANAGEMENT

TAKING EVENT MANAGEMENT TAKING EVENT MANAGEMENT TO THE NEXT LEVEL PRESENTED BY MELISSA MACK, INTUITIVE BUSINESS CONCEPTS AGENDA imis20 RiSE Events Overview imis20.2 Events & RiSE Registration features Advanced Accounting Console

More information

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements.

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. Purchase Items during Registration Administrators can now enable

More information

WEBSITE INSTRUCTIONS

WEBSITE INSTRUCTIONS Table of Contents WEBSITE INSTRUCTIONS 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

Edyth Bush Institute for Philanthropy & Nonprofit Leadership, Rollins College 2

Edyth Bush Institute for Philanthropy & Nonprofit Leadership, Rollins College 2 Edyth Bush Institute for Philanthropy & Nonprofit Leadership, Rollins College 2 ABOUT YOUR PROFILE... 4 ABOUT GROUPS... 4 ABOUT NETWORKS... 4 ABOUT FILES & LINKS... 4 ABOUT MESSAGES... 4 ABOUT CONNECTIONS...

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

ChamberMaster/MemberZone Solution Overview April 13, 2018

ChamberMaster/MemberZone Solution Overview April 13, 2018 ChamberMaster/MemberZone Solution Overview April 13, 2018 Agenda Our session includes... Basics of using ChamberMaster/MemberZone Where to get Help Highlights of Modules 2 Overview ChamberMaster/MemberZone

More information

SIP User's Guide. Sitecore Intranet Portal. A Quick Guide to Using SIP. SIP User's Guide Rev:

SIP User's Guide. Sitecore Intranet Portal. A Quick Guide to Using SIP. SIP User's Guide Rev: Sitecore Intranet Portal SIP User's Guide Rev: 2009-01-20 Sitecore Intranet Portal SIP User's Guide A Quick Guide to Using SIP Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating and Editing

More information

* IMPORTANT* Welcome to QVCC s Non Credit Online/Flexible Registration

* IMPORTANT* Welcome to QVCC s Non Credit Online/Flexible Registration Welcome to QVCC s Non Credit Online/Flexible Registration For Non Credit Courses * IMPORTANT* Do not use your internet browser s BACK button while in Flexible Registration. Press OK to any security popups

More information

Printed Documentation

Printed Documentation Printed Documentation Table of Contents Getting Started... 1 Technical Support... 1 Introduction... 1 Getting Started... 3 Payment Option:... 3 Data Synchronization... 4 General Website settings... 5

More information

American Public Health Association s Affiliate Online Community User s Guide. October 2015 edition

American Public Health Association s Affiliate Online Community User s Guide. October 2015 edition American Public Health Association s Affiliate Online Community User s Guide October 2015 edition TABLE OF CONTENTS Getting Started- Creating Your Account.3 Getting Started- Tips and Suggestions.4 Getting

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

Blog site (cont.) theme, 202 view creations, 205 Browser tools, 196 Buytaert, Dries, 185

Blog site (cont.) theme, 202 view creations, 205 Browser tools, 196 Buytaert, Dries, 185 Index A Administration, 157 backups and restore (see Backups and restore website) file system, 161 log files, 162 tasks, 157 updates and security patches, 165 user accounts, 166 Aggregator module, 218

More information

Latest Innovations for Event Registration

Latest Innovations for Event Registration Latest Innovations for Event Registration Presented by: About ATS Serving imis community since 1996 Full-service Authorized imis Solutions Provider (AiSP) 2015 AiSP of the Year Hosted by Randy Richter

More information

Administration Guide

Administration Guide Administration Guide 12/22/2016 Blackbaud Internet Solutions 4.0 Administration US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any

More information

Overview

Overview HTML4 & HTML5 Overview Basic Tags Elements Attributes Formatting Phrase Tags Meta Tags Comments Examples / Demos : Text Examples Headings Examples Links Examples Images Examples Lists Examples Tables Examples

More information

Frooition Implementation guide

Frooition Implementation guide Frooition Implementation guide Version: 2.0 Updated: 14/12/2016 Contents Account Setup: 1. Software Checklist 2. Accessing the Frooition Software 3. Completing your Account Profile 4. Updating your Frooition

More information

Which Guides Should I Read?

Which Guides Should I Read? Which Guides Should I Read? Many user guides accompany The Raiser s Edge. The chart below helps you decide which user guides to read, based on your job requirements, necessary tasks, and areas of The Raiser

More information

Blackboard 5 Level One Student Manual

Blackboard 5 Level One Student Manual Blackboard 5 Level One Student Manual Blackboard, Inc. 1899 L Street NW 5 th Floor Washington DC 20036 Copyright 2000 by Blackboard Inc. All rights reserved. No part of the contents of this manual may

More information

OKPAY guides INTEGRATION OVERVIEW

OKPAY guides INTEGRATION OVERVIEW Название раздела OKPAY guides www.okpay.com INTEGRATION OVERVIEW 2012 Contents INTEGRATION OVERVIEW GUIDE Contents 1. Payment System Integration 2. OKPAY Integration Types 2.1. Basic Payment Links and

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Accounts Receivable Customer

Accounts Receivable Customer Accounts Receivable Customer Contents Overview... 1 Document Layout... 2 General Information Tab... 3 Corporate Information Tab... 3 Contact Information Tab... 4 Addresses Tab... 4 Overview The Customer

More information

Blackboard 5. Instructor Manual Level One Release 5.5

Blackboard 5. Instructor Manual Level One Release 5.5 Bringing Education Online Blackboard 5 Instructor Manual Level One Release 5.5 Copyright 2001 by Blackboard Inc. All rights reserved. No part of the contents of this manual may be reproduced or transmitted

More information

ReCPro TM User Manual Version 1.15

ReCPro TM User Manual Version 1.15 Contents Web Module (recpro.net)... 2 Login... 2 Site Content... 3 Create a New Content Block... 4 Add / Edit Content Item... 5 Navigation Toolbar... 6 Other Site Tools... 7 Menu... 7 Media... 8 Documents...

More information

Administration Guide

Administration Guide Administration Guide 10/31/2016 Blackbaud NetCommunity 7.1 Administration US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means,

More information

Table of Contents. Introduction Technical Support Getting Started Data Synchronization General Website Settings...

Table of Contents. Introduction Technical Support Getting Started Data Synchronization General Website Settings... E-Commerce Table of Contents Introduction... 1 Technical Support... 1 Introduction... 1 Getting Started... 2 Data Synchronization... 2 General Website Settings... 3 Customer Groups Settings... 4 New Accounts

More information

Rutgers Alumni Online Community Getting Started Guide

Rutgers Alumni Online Community Getting Started Guide Contents OVERVIEW... 2 FIRST TIME LOGIN... 2 RETURN VISITS... 3 NAVIGATING THE ALUMNI HOME PAGE WHEN YOU ARE LOGGED IN... 5 OVERVIEW OF THE ONLINE COMMUNITY... 5 PROFILE... 6 OVERVIEW OF THE PROFILE PAGE...

More information

Your Cart User Manual v3.6

Your Cart User Manual v3.6 Your Cart User Manual v3.6 2 Your Cart User Manual v3.6 Table of Contents Foreword 0 7 Part I Getting Started Overview 11 Part II Categories & Products 1 Manage Categories... Overview 11 Add a New... Category

More information

Team Fundraising Guide

Team Fundraising Guide Team Fundraising Guide 012511 Blackbaud NetCommunity 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,

More information

Website Update & Frequently Asked Questions

Website Update & Frequently Asked Questions www.mannatech.com Website Update & Frequently Asked Questions This is a live document and will be updated as needed. If this guide does not address your needs, or you have suggestions for additional sections,

More information

11_Mitchell_indexFinal.qxd 8/25/06 10:18 AM Page 195 Index

11_Mitchell_indexFinal.qxd 8/25/06 10:18 AM Page 195 Index Index 196 CREATE YOUR OWN WEBSITE A Account Overview screen (PayPal), 71 Account tab (SnapFish photo sharing service), 138 Add a Border option (SnapFish photo sharing service), 145 Add to Cart button,

More information

12/3/ Introduction to CenterStage Spaces and roles. My Community My Spaces, My Favorite Spaces

12/3/ Introduction to CenterStage Spaces and roles. My Community My Spaces, My Favorite Spaces Introduction to CenterStage Spaces and roles My Community My Spaces, My Favorite Spaces Inside the space Navigate, watch, share Files Open, import, edit, tag, copy, share Communication tools Wikis, blogs,

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla About the Tutorial Joomla is an open source Content Management System (CMS), which is used to build websites and online applications. It is free and extendable which is separated into frontend templates

More information

NCR Retail Online Partner Update NCR Retail Online Partner Update

NCR Retail Online Partner Update NCR Retail Online Partner Update NCR Retail Online Partner Update NCR Retail Online Partner Update Presenters: Laura Boylan Jack Roberts NCR Retail Online What is NCR Retail Online (NRO)? Hosted ecommerce solution powered by Magento CE

More information

OpenSpace provides some important benefits to you. These include:

OpenSpace provides some important benefits to you. These include: Cengage Education A member of Open Colleges Welcome to OpenSpace OpenSpace is our virtual campus. It is our online space for students, tutors and staff to interact. It provides you with a secure, interactive

More information

ecorner Stores Plus CloudShops

ecorner Stores Plus CloudShops ecorner Stores Plus CloudShops Quick Start Guide ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au The information contained

More information

Google Sites 101. Mrs. Wilson

Google Sites 101. Mrs. Wilson Google Sites 101 Mrs. Wilson Google Sites 101 Create a site 1. Go to http://sites.google.com/ 2. Login with your Google Account [or Google Apps account] email address and password You can create a Google

More information

Explorer View document libraries, 165 form library, 183

Explorer View document libraries, 165 form library, 183 Index A Actions section Add Listing link, 18 Add News link, 29 Add Person link, 20 Advanced Search Link, 41 Change Location link, 19 Change Settings link, 13 Create Subarea link, 13 Edit Page link, 21

More information

Getting Started: Setting up Your ecommerce Site

Getting Started: Setting up Your ecommerce Site West Virginia University Information Technology Services ecommerce Getting Started Getting Started: Setting up Your ecommerce Site Table of Contents Introduction... 3 Access Your Site... 4 Logging In...

More information

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont

Index A Access data formats, 215 exporting data from, to SharePoint, forms and reports changing table used by form, 213 creating, cont Index A Access data formats, 215 exporting data from, to SharePoint, 215 217 forms and reports changing table used by form, 213 creating, 237 245 controlling availability of, 252 259 data connection to,

More information

ONLINE GIVING INSTRUCTIONS

ONLINE GIVING INSTRUCTIONS ONLINE GIVING INSTRUCTIONS Creating Your Giving Account and Making A Donation How to Log into the Giving Site STEP 1: Visit The Campaign s website, www.gasccp.org and navigate to the Donors Section and

More information

Getting started guide for Administrators

Getting started guide for Administrators Getting started guide for Administrators Table of Contents Introduction... 3 Creating the school portal... 5 Navigating the platform... 6 Help Center... 12 Profile... 14 Configuring features... 16 Customizing

More information

Publisher Onboarding Kit

Publisher Onboarding Kit Publisher Onboarding Kit Smart content. Smart business. Publishing, Supporting & Selling HotDocs Market Templates A HotDocs Market publisher s guide for loading templates, answering customer questions

More information

Dugan's Travels. Agent Website. User Guide

Dugan's Travels. Agent Website. User Guide Dugan's Travels Agent Website User Guide Lundy Innovations Ken Lundy, Sr. v1.2 1 v1.6 Table of Content Website Overview.................................................................... 3 Home Page -

More information

WIKISYS TECHNOLOGY INTERNSHIP PROGRAM

WIKISYS TECHNOLOGY INTERNSHIP PROGRAM WIKISYS TECHNOLOGY INTERNSHIP PROGRAM WEB DESGINING Create layout Design Photoshop Html 5 CSS 3 Responsive Website Bootstrap GIF Animation Flash Dreamweaver Java Script JQuery FTP File Uploading Print

More information

Editor Guide. There are three ways to create, edit and delete an article within SOCS. They are Central Services, SOCS Wiki s and Easy Edit.

Editor Guide. There are three ways to create, edit and delete an article within SOCS. They are Central Services, SOCS Wiki s and Easy Edit. Editor Guide There are three ways to create, edit and delete an article within SOCS. They are Central Services, SOCS Wiki s and Easy Edit. Central Services Select Editor from left-hand side navigation

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Pinnacle Cart User Manual v3.6.3

Pinnacle Cart User Manual v3.6.3 Pinnacle Cart User Manual v3.6.3 2 Pinnacle Cart User Manual v3.6.3 Table of Contents Foreword 0 Part I Getting Started Overview 7 Part II Categories & Products 11 1 Manage... Categories Overview 11 Add

More information

Pay. Quick Start Guide Sage One. Pay QUICK START GUIDE SAGE ONE

Pay. Quick Start Guide Sage One. Pay QUICK START GUIDE SAGE ONE QUICK START GUIDE SAGE ONE 1 Our easy to use guide will get you up and running in no time! Index: Page: 2 Login Now 3 How to issue a service key 3 Inserting service keys into 4 Enable the Customer Zone

More information

DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE

DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE 14000 SUNFISH LAKE BLVD SUITE G RAMSEY, MN 55303 TELEPHONE: 612-210-7008 Table of Contents Section 1 HOW TO LOGIN Section 2 Section 3 Section 4 Section 5

More information

CEU Catalog Guide. When you access the CEU catalog it defaults to ALL available CEUs.

CEU Catalog Guide. When you access the CEU catalog it defaults to ALL available CEUs. CEU Catalog Guide When you access the CEU catalog it defaults to ALL available CEUs. You can see the Title of the CEU, the Certification(s) it will apply to, Topic Code and Credit Hours Below the Title

More information

Quick Online Shop Documentation

Quick Online Shop Documentation Quick Online Shop Documentation In the following tutorial, you will get a complete step by step guide of using Quick Online Shop WordPress theme for building an amazon affiliate store site. All steps have

More information

TEACHER PAGES USER MANUAL CHAPTER 6 SHARPSCHOOL. For more information, please visit: Chapter 6 Teacher Pages

TEACHER PAGES USER MANUAL CHAPTER 6 SHARPSCHOOL. For more information, please visit:  Chapter 6 Teacher Pages SHARPSCHOOL USER MANUAL CHAPTER 6 TEACHER PAGES For more information, please visit: www.customernet.sharpschool.com 0 TABLE OF CONTENTS 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. INTRODUCTION... 1 I. TEACHER PAGE

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

Report Builder: Creating Custom SSRS Reports From IQA

Report Builder: Creating Custom SSRS Reports From IQA Report Builder: Creating Custom SSRS Reports From IQA Tuesday October 3, 2017 1:00 pm 2:30 pm Judy Zatz, C Systems Global Objective To learn how to do use Microsoft s Report Builder to Make simple changes

More information

ChurchSquare Member Directory Guide

ChurchSquare Member Directory Guide ChurchSquare Member Directory Guide Version 1.4 Proper Document Usage and Document Distribution This document is being furnished by ChurchSquare, for informational purposes only to users of the ChurchSquare

More information

WELCOME to Qantas Group isupplier

WELCOME to Qantas Group isupplier WELCOME to Qantas Group isupplier A manual for suppliers Welcome to our isupplier help manual. You re receiving this manual as you are one of our preferred suppliers with access to the isupplier Portal.

More information

+44 (0)

+44 (0) I N T R O D U C I N G N E X T G E N The Librios NextGen platform lets you monetise and repurpose your content and improve your production workflows. It is designed to help small to medium publishers repurpose

More information

Event Scheduling System 4.0 User Guide

Event Scheduling System 4.0 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Drupal About the Tutorial is a free and open source Content Management System (CMS) that allows organizing, managing and publishing your content. This reliable and secure CMS is built on PHP based environment

More information

Notification Tool User Guide

Notification Tool User Guide BEFORE YOU START... 1 Why Should I Use Notification Tool? 1 Hardware Requirements 2 Software Requirements 2 Network Requirements 2 How Do I Access the Notification Tool? 2 How Can I Get Support When Using

More information

Sage Paperless Construction

Sage Paperless Construction Sage Paperless Construction Release Notes Version 6.2 2017. The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

Azox. esource - Why You Should Upgrade. esource 3.5 (Coming Third Quarter 2013) New Promotions Address Confirmation

Azox. esource - Why You Should Upgrade. esource 3.5 (Coming Third Quarter 2013) New Promotions Address Confirmation Azox Azox e-commerce platform, esource, has undergone new changes and updates over the past several years and regardless of what release you are running, you ll want to consider upgrading to the newest

More information

edirectory Change log

edirectory Change log edirectory 11.2.00 Change log Arca Solutions 7138 Little River Turnpike #1825 Annandale, VA 22003 www.arcasolutions.com 1. What s new 1. Sponsors can now add a video to their classifieds ads 2. Sponsors

More information

INTRODUCTION TO BLACKBOARD

INTRODUCTION TO BLACKBOARD INTRODUCTION TO BLACKBOARD Working URL - https://www.d11.org Layout of the site MY START BAR CHANNEL BAR HEADER GLOBAL ICONS Logging In Use your email as your username and your network password. SITE MANAGER

More information

Announcing. Rapattoni Magic Version Highlights

Announcing. Rapattoni Magic Version Highlights Announcing Rapattoni Magic Version 8.18.02 Rapattoni Corporation is pleased to announce the newest release of Rapattoni Magic. Following are just a few of the new features and changes. Please see the attached

More information

This is a Private Group - Content is only visible to group members.

This is a Private Group - Content is only visible to group members. This is a Private Group - Content is only visible to group members. Community Advisory Board Small, private, selective group of key Telligent customers creating strong connections and contributing to the

More information

CMSnipcart Documentation

CMSnipcart Documentation CMSnipcart Documentation Release 1.0.0 CMExtension January 07, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

Partner estore. User Guide 24/7 Partnering Solutions

Partner estore. User Guide 24/7 Partnering Solutions Partner estore User Guide 24/7 Partnering Solutions General Introduction 4 Accessing the Partner estore 5 Searching for Products 6 Product Browsing, Quick and Advanced Search Placing an Order 12 Search

More information

Higher Reach Online Registration

Higher Reach Online Registration Higher Reach Online Registration July 12, 2013 (Version 1) kc This procedure guide contains information for students and administration. QUICK ADMIT Define three roles that someone can use to log in to

More information

200+ Ways a Team Can Support You

200+ Ways a Team Can Support You 200+ Ways a Team Can Support You Review this list and consider which areas you need support in. Customer Support / Administrative check voicemail messages and respond to standard inquiries or provide client

More information

Online Registration FAQs

Online Registration FAQs Online Registration FAQs o How do we register individuals from the back end? (Over the phone) o How do we send emails to individuals on the roster? o How do we view and print a roster of individuals attending

More information

All India Council For Research & Training

All India Council For Research & Training WEB DEVELOPMENT & DESIGNING Are you looking for a master program in web that covers everything related to web? Then yes! You have landed up on the right page. Web Master Course is an advanced web designing,

More information

Oracle Application Express 5 New Features

Oracle Application Express 5 New Features Oracle Application Express 5 New Features 20th HrOUG conference October 16, 2015 Vladislav Uvarov Software Development Manager Database Server Technologies Division Copyright 2015, Oracle and/or its affiliates.

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

QNet Online Ordering Ordering Instructions

QNet Online Ordering Ordering Instructions QNet Online Ordering Ordering Instructions If you require any assistance please don t hesitate to contact your account manager or coordinator on +61 3 9834 3000. Page 1 Getting Started: DMC Group s Quantum

More information

9.3 release headlines

9.3 release headlines Dynamicweb 9.3 9.3 release headlines Product Information Management (PIM) Rapido Implementation Framework New Ecommerce improvements Network Load Balancing (NLB) Use index for content search PIM Dynamicweb

More information

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PDA Account Registration On the America s Health Insurance Plans website (www.ahip.org/courses ), Click Register and submit your information. Please note

More information

Release Notes V9.5 (inc V9.4) Release Notes. Phone: Fax:

Release Notes V9.5 (inc V9.4) Release Notes. Phone: Fax: Release Notes V9.5 (inc V9.4) 2016 Release Notes Phone: 01981 590410 Fax: 01981 590411 E-mail: information@praceng.com RELEASE NOTES These Release Notes give you information regarding changes, modifications

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without

More information

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE This setup guide will help you integrate Magento with your Campaigner account. A API Settings API username/password You must enter the API credentials for your

More information

Digication eportfolio Student s Guide (Last update: 8/2017)

Digication eportfolio Student s Guide (Last update: 8/2017) Digication eportfolio Student s Guide (Last update: 8/2017) 2 Table of Contents Introduction... 1 Creating Your eportfolio... 3 Editing Your eportfolio... 4 Area 1: Top Menu Bar... 6 Area 2: The Main Tabs...

More information

Setting up your TouchNet Marketplace ustore

Setting up your TouchNet Marketplace ustore Setting up your TouchNet Marketplace ustore Topics Covered: Logging into TouchNet Accessing your store Email Messages Single Store Settings Store Template Settings Users Categories Products including Options

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress About the Tutorial WordPress is an open source Content Management System (CMS), which allows the users to build dynamic websites and blog. WordPress is the most popular blogging system on the web and allows

More information