The Fastest Way to a Drupal Site: Think it, Plan it, Build it.

Size: px
Start display at page:

Download "The Fastest Way to a Drupal Site: Think it, Plan it, Build it."

Transcription

1 The Fastest Way to a Drupal Site: Think it, Plan it, Build it. Introduction Whether you ve been building static web pages, managing hosted blogs, or are new to web development altogether building a dynamic, content managed website may seem daunting. With literally thousands of modules to choose from, and an expandable architecture, an open source framework like Drupal can be intimidating. Fortunately, there is a solution that can provide all of the benefits of a content management system, without the steep learning curve you might expect. If you re interested in building sites that take advantage of cutting-edge web 2.0 features, or have been wary of diving into an open source CMS, this white paper is for you. With illustrated diagrams and easy to follow instructions, this white paper will take you through set-up, site administration, and even content organization. Using Drupal Gardens, the do it yourself online tool for building and theming Drupal sites, this white paper will have you launching your next web project today. Note: The Drupal Gardens export is 100% un-hacked Drupal. No kittens were killed during the making of your site. 1 1 Sites exported from Drupal Gardens mirror the state of the Drupal Gardens code base at the time of export. Drupal Gardens may include patched or developer versions of modules and other code that is still under consideration for, but not yet part of, the official releases downloaded from drupal.org. Exported Drupal Gardens sites are compatible with Drupal 7 core and modules and fully upgradeable. MSKU#:

2 2 The Fastest Way to a Drupal Site Think it You need to know what your site should do before you can build it quickly and efficiently. I like to start with a list of ideas and needs that I then turn into wireframes simple graphic mockups of the main pages of my site. Seeing the pages laid out helps me keep track of the details. However you do it, you ll need to list all of the pages of your site and what you need on them. Group them into main and subpages to get a feeling for what your site navigation will need to look like. For this white paper, I planned a site for an ice cream parlor using the Drupal Gardens Product site template. This template activates and configures a bunch of modules, content types and blocks for me. I only used a small selection of the functionality available in Drupal Gardens and only a few of the block regions available in the standard Drupal Gardens theme layout: Plan it Apply the following formula to every element on every page of your site: Ask yourself the following questions: Source Interaction Display Source: Where does this come from? Some combination of user roles, permissions and module configuration usually answers these questions. A site administrator?

3 3 The Fastest Way to a Drupal Site A contributor? An automated feed A module Site visitors? Interaction: Who interacts with this and how? These questions are very similar to the previous set (source) and can usually also be answered with a different combination of user roles, permissions and module configuration. Who can see it? Drupal Gardens FAQ How is Drupal Gardens Drupal? Or open source? Drupal Gardens is a new kind of product: OSSaaS (Open Source Software as a Service) built on Drupal. Along the way, Acquia has put thousands of hours of thought and work into the Drupal core and many contributed modules. Who can change it? Who can add to it? Display: Where and how is this displayed? The answers to these questions lie in the configuration of blocks, selection and presentation of content in views, menu- and module configuration, and so on. Just to be clear, by display I mean the functional aspects of your site like pages and block regions, not 200 pixels wide and blue setting the look and appearance of your site is called theming in Drupal. Where on the page does this appear Is it in a block? In which region and on which pages Is it a link? Is it a menu item? Is it a teaser or a full node? With a bit of practice and experience building sites, this formula should become second nature and make you feel confident you are covering all the relevant aspects of each page element on your site. Do I own my data? Yes. Export your Drupal Gardens site at any time and run it on any Drupal-compatible hosting. The export is 100% unhacked Drupal. No kittens were killed during the making of your site. What modules are available in Drupal Gardens? Create a site today at and go to the Modules page of your new site to find out! What if I want to add more modules to my site? Export it. You can then add compatible modules and get development help from 1000s of Drupal service providers around the world. Build it: From wireframe to site Let s look at my wireframes and run through the practical application of Source- Interaction-Display on part of my overall site plan.

4 4 The Fastest Way to a Drupal Site As you go through the Source Interaction Display process on your own sites, you ll start hitting more and more elements you ve already covered. This should give you some peace of mind that you are covering all the bases. Here s the plan for my front page: This shows my site s sub-pages and how my main menu will work:

5 5 The Fastest Way to a Drupal Site Two important choices The really important part of the products page (see below) is the list of flavors that s what we really want to know about an ice cream place, right? It is the result of two choices you need to understand to really be able to leverage Drupal s power and flexibility: When should I make new content types and why? When should I make static versus dynamic pages? Static and Dynamic Understanding what static and dynamic pages (and blocks) are and when you should use each can help you plan and run your site. Static pages and blocks - There are a few pages or blocks on most sites that don t change much like the welcome text on my ice cream parlor s front page. The Drupal Basic page content type is perfect for pages like this. Add menu links to the main or sub-menus where visitors should find them and you re good to go. A custom block is a great way to present short, important information like the store hours block on my site. Dynamic pages and blocks Building and maintaining complex pages by hand is laborious. You should let Drupal assemble them for you. As your site grows and changes, those pages change for you automatically. Some of these dynamic pages and blocks come with Drupal and its modules: The Blog module lists all blog posts, newest first. If you have two blog authors, there ll also be two other pages, each with a single author s entries. Drupal can display a page of all site content tagged with any given taxonomy term. Blocks like Recent [comments/new members/blog posts/gallery images] and Who s new. Most of us can probably use a couple other dynamic pages that aren t built in to Drupal. That s where modules like Views and Simple Views come in. They give you a variety of powerful options to make the rules called views to build dynamic pages and blocks.

6 6 The Fastest Way to a Drupal Site Making content types work for you When should you create and use new content types? I use two strategies when planning a site: organization and access. The organization strategy Making content types that fit your data helps in collecting, organizing and presenting it. You could use a simple content type like Basic page which is only a title, and a body text for everything on your site, but it s like throwing a bunch of colored toy blocks into an open box: The information might all be there, but it s hard to sort the products from the staff members from anything else. If you tag your content, you can at least leverage Drupal to show things tagged product on one page, but it won t be sortable. One product might be described one way and another completely differently. You ll lose sales if it s difficult for visitors to sort and compare your products. Custom-tailoring (new) content types by adding numerical, text or other fields to them means no matter who adds new products on your site, it will be done in a standardized format. This also lets you take advantage of views to make dynamic, sortable products pages, while still only having to enter each product a single time. Example: The Ice cream custom content type on my site includes a name and text body plus fields like: short description (text field), calories per serving (numerical field); photo (image field); popularity; ingredients list; allergens list; etc. The access strategy Limit content contributors access to only creating and changing content of one or more specific content types. Site administrators retain full access to the back end, but restrict non-technical users, improving security and reducing administrative headaches. Example: Three groups of users need to add and change content on a school website: the school administration, the PTA, and the after school program. Make a user role for each

7 7 The Fastest Way to a Drupal Site Make two simple content types (title and body text only), PTA page and After School page, along with anything else you need. PTA and After School are only assigned permissions to create, edit and delete pages of their own content types. School administration users are permitted to create, edit and delete all content and blocks on the site. Here are two important sub-pages, the contact page and my products page:

8 8 The Fastest Way to a Drupal Site Source-Interaction-Display - element by element Theming Drupal Planning every element of every page pays off in reduced build and configuration time. Due to space constraints, I am not able to do that here. Below are some highlights to give you the idea: Items marked with an asterisk (*) are included in the Drupal Gardens template I chose for the site. This white paper does not cover developing the look and feel of your site, known as theming in Drupal (there is an article in this issue, PSD To Drupal 7 Theme that covers some Drupal theming basics). Site name*, Site slogan* SOURCE: Site administrator. Set via Configuration > Site information INTERACTION/DISPLAY: Visible in the header region by default. It would take a lot more space that I have here to even begin to cover all of the possibilities in this rapidly evolving area from in-browser WYSIWYG tools like the Drupal Gardens ThemeBuilder to templating Logo* SOURCE/DISPLAY: Site administrator. Actually a theme element, set using the Drupal Gardens ThemeBuilder (via Appearance > Brand > Logo). Set your site s favicon while you are there. Menus (main*, footer, products page sub-menu) SOURCE: Site administrator. Add main menu links while creating the various pages. Add links to sub-pages as children of their respective parent menu items. Create and configure custom Footer and Product page menus via Structure > Menus > + Add menu. languages, tools, modules, base themes, theme families and systems. Remember that we use a content management system like Drupal to separate theming from functionality. Choose a solid, flexible base theme; make your site work right (access, dynamic pages, links, etc.), then make it pretty. INTERACTION: Menu items that link to parts of your site that a given user does not have permission to see will not be shown to that user. DISPLAY: Menus are blocks in Drupal. Set their display regions and pages via Structure > Blocks. Footer menu block placed in the Footer first region, Product page menu block placed in the Sidebar A region and displayed only on the Products page via Structure > Blocks. Main menu displayed in the Navigation region by default. Rotating banner* SOURCE: Site administrator. The rotating banners in Drupal Gardens are blocks. Create and configure via Structure > Blocks. INTERACTION: Images can link to any URL. DISPLAY: Displayed by default in the banner block on the front page only.

9 9 The Fastest Way to a Drupal Site Custom blocks (Contact page message, Flavor of the month*, Store hours*, Copyright & thanks) SOURCE: Site administrator. Create custom blocks via Structure > Blocks. INTERACTION: Block texts include links to relevant pages. DISPLAY: Flavor of the month block placed in Sidebar A, Store hours block in Sidebar B, Copyright & thanks block in the Copyright region, displayed on all pages via Structure > Blocks. The Got something to tell us? block is displayed in the Highlighted Content region on the Contact page only. Module generated blocks* Twitter feed* SOURCE: Aggregator module. Site administrators configure the Twitter feed and Overheard on Twitter block via Configuration > Feed aggregator. Get the feed URLs from your account page at Mailing list* SOURCE: Mailing List module. Site administrators can create lists and set subscription confirmation messages via Structure > Mailing lists. Mailing list* INTERACTION: All site visitors can enter their name and an address. Site administrators can see and download all submissions for use elsewhere. DISPLAY: Set display at Structure > Blocks. Front page welcome message* SOURCE: Basic page node created by site administrators. INTERACTION: Comments deactivated. Drupal jargon, a microglossary Attribution: sourced in part and inspired by node/ See this white paper s Further reading section for links to more references online. Node - The basic unit of content in Drupal. All nodes are of a given content type (page, blog entry, etc.). All nodes have a title; most have a text body. Block, Region - Pages on your Drupal site are laid out in regions. Blocks (including menus, module output, views or static content) are displayed within those regions. Module - A set of code that enables specific functionality on your site. Most create a set of permissions when activated. Some make new blocks and menu items available when they are activated. DISPLAY: Save this node with the following Publishing options (via the content creation page): Published (visible to site visitors) Promoted to front page (displayed on front page) Sticky at top of lists (no matter what else might appear on the page, this will be displayed at the top). Other Basic page static content on the site includes: Where to buy, Wholesales, About us* & How to find us pages. Users, Permissions, Roles - The combination of roles assigned to a user and the permissions assigned to those rolls determine what a site visitor can see and do on your site. All unregistered site visitors have the anonymous user role. All registered and logged-in users have the authenticated user role and any other roles they ve been assigned.

10 10 The Fastest Way to a Drupal Site Contact form* SOURCE: Site administrator. Add contact categories, admin recipient addresses, and custom auto-reply messages to the contact form via Structure > Contact form. Drupal Gardens adds a Contact menu item to the main menu by default. INTERACTION: The Use the site-wide contact form permission is given by default to all users. Restrict access to the contact form by removing the Use the sitewide contact form permission from one or more roles via People > Permissions > Permissions. DISPLAY: The contact page and menu links to it will not be displayed to users who do not have access to it. Products page flavor list SOURCE: Site administrator. A sorted view of all ice cream flavors showing the teaser display (name, photo, short description) of the Icecream content type. INTERACTION: When visitors click on the name of the flavor, they are taken to its full page. DISPLAY: The view is built to show Icecream nodes as teasers. Site administrators could also expose some of the view s filters, allowing visitors to sort the view based on the exposed filters (name, popularity, dairy content, etc.). Other dynamic pages Staff & Events pages - built like the Products page as a view of a custom content type. The Upcoming event on the front page is a node promoted to the front page, but not sticky at the top of lists. It also appears on the Events page. Blog* - Blog entries, newest first, generated by the Blog module FAQ* - View of FAQ item content. This content type, page and menu link are preconfigured by the Drupal Gardens FAQ feature. Pictures* - Landing page displaying all media galleries. Generated by the Gallery module that drives the Drupal Gardens Media Gallery feature. Each gallery also generates a configurable preview block. Pro tips for the road Here are a couple things I like to remind myself of when I am building a site: Set these before you start creating real production content. Going back and updating content later is a real hassle.

11 11 The Fastest Way to a Drupal Site Author and submission time display - Decide and set for each content type (via Structure > Content types > edit) which ones should display this information (good for blog posts and press releases) and which should not (products, staff biographies, and the like). Comments on content The same goes for which content types site visitors should be allowed to comment on. After activating comments, set the comment permissions (post comments is the critical one) via People > Permissions. Want more than a mailing list? You might want to know more that a name and an address. Make a powerful webform instead to collect s along with multiple choice, free text and other kinds of questions, using the Webform module (the engine behind the Drupal Gardens Forms feature. Links - When you add links to other pages within your site by hand, format the link like this: <a href= /contact >Contact page</a>, Drupal will fill in the rest of your site URL for you! Or just go for it! Think of your Drupal Gardens site it as a living wireframe. Thanks to its site templates, features and ease of repeatability (you can copy and reuse whole sites and themes), Drupal Gardens lets you get away with a little less planning up front and a little more experimentation along the way. Just think Source Interaction Display every time you want to add something new. About Acquia Acquia empowers enterprises with the open-source content-management system Drupal. Co-founded by Drupal s creator in 2007, Acquia helps customers manage their growth and scale their online properties with confidence. Acquia s software, consultation, cloud infrastructure, and services enable companies to realize the full power of Drupal while minimizing risk, as it s done for Examiner.com, Al Jazeera, and over 700 others. See who s using Drupal at and learn more at Further Reading If getting a Drupal Gardens site online has whetted your appetite, here are a few great references on Drupal.org: Understanding Drupal : General concepts - Terminology - Acronyms and expressions used on drupal.org is informative, fun, and will help you communicate more effectively with other Drupalistas: Copyright 2011, Acquia, Inc. Acquia, Inc. 25 Corporate Drive, 4th Floor Burlington, MA USA sales@acquia.com

Building Your First Drupal 8 Company Site

Building Your First Drupal 8 Company Site Building Websites with Drupal: Learn from the Experts Article Series Building Your First Drupal 8 Company Site by Todd Tomlinson July, 2014 Unicon is a Registered Trademark of Unicon, Inc. All other product

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

Hello Drupal! Here s your welcome-pack to the Drupal Community. Prepared by. for the Drupal community

Hello Drupal! Here s your welcome-pack to the Drupal Community. Prepared by. for the Drupal community Hello Drupal! Here s your welcome-pack to the Drupal Community Prepared by for the Drupal community Please visit http://training.acquia.com/ to learn about Acquia partner s training events Acknowledgements

More information

Creating Research Web Sites with Drupal. Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course

Creating Research Web Sites with Drupal. Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course Creating Research Web Sites with Drupal Randy Carpenter & Steven Akins, May 25, 2010 TSO Brown Bag Course Last Revision: May 24, 2010 Introduction Randy Carpenter, Lead of TSO Research Program Support

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

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved.

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved. Reference Guide Pogoplug Team Reference Guide Table of Contents Table of Contents 1. What s Included 2. Getting Started 3. Customizing the Pogoplug Interface a. Custom UI b. Custom Domain Name c. Custom

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

UW- Madison Department of Chemistry Intro to Drupal for Chemistry Site Editors

UW- Madison Department of Chemistry Intro to Drupal for Chemistry Site Editors UW- Madison Department of Chemistry Intro to Drupal for Chemistry Site Editors Who to Contact for Help Contact Libby Dowdall (libby.dowdall@wisc.edu / 608.265.9814) for additional training or with questions

More information

What is Drupal, exactly?

What is Drupal, exactly? What is Drupal, exactly? Drupal is an open source content management system used to build and manage websites. A content management system (CMS) is a set of procedures or functions that allow content to

More information

WordPress websites themes and configuration user s guide v. 1.6

WordPress websites themes and configuration user s guide v. 1.6 WordPress websites themes and configuration user s guide v. 1.6 Congratulations on your new website! Northeastern has developed two WordPress themes that are flexible, customizable, and designed to work

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

Drupal Website Design Curriculum

Drupal Website Design Curriculum Drupal Website Design Curriculum Curriculum Materials The STEM Fuse Drupal Website Design Curriculum is an 18 week website design curriculum developed for high school level (grade 9 12) students. The curriculum

More information

Website Express training website dashboard

Website Express training website dashboard training website dashboard Website Express is a simple website creation tool with powerful features that allow you to easily create and manage your website 2 options are available: 1. basic website - business

More information

Creating a Restaurant Website

Creating a Restaurant Website 11 Creating a Restaurant Website In This Lesson This lesson looks at the process of creating a small business website, in this case for a restaurant. Starting from a needs analysis, this lesson shows you

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

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

A Close Look at Drupal 7

A Close Look at Drupal 7 smart. uncommon. ideas. A Close Look at Drupal 7 Is it good for your bottom line? {WEB} MEADIGITAL.COM {TWITTER} @MEADIGITAL {BLOG} MEADIGITAL.COM/CLICKOSITY {EMAIL} INFO@MEADIGITAL.COM Table of Contents

More information

Start Learning Joomla!

Start Learning Joomla! Start Learning Joomla! Mini Course Transcript 2010 StartLearningJoomla.com The following course text is for distribution with the Start Learning Joomla mini-course. You can find the videos at http://www.startlearningjoomla.com/mini-course/

More information

Word Press Theme Video Stream Apptha

Word Press Theme Video Stream Apptha Word Press Theme Video Stream Apptha Steps for Installation: Extract the downloaded UNZIP_THIS_FIRST_videostream.zip file. Once you have extract, follow the below steps: Go to Admin Appearance Themes Install

More information

Proposal for Website Design and Development Services: Digital Library Federation

Proposal for Website Design and Development Services: Digital Library Federation Proposal for Website Design and Development Services: Digital Library Federation Overview The Digital Library Federation (DLF) is an association of libraries and institutions whose mission is to develop

More information

!!!!!!!! Startup Guide. Version 2.7

!!!!!!!! Startup Guide. Version 2.7 Startup Guide Version 2.7 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

Getting Started with WordPress. A Guide to Building Your Website

Getting Started with WordPress. A Guide to Building Your Website Getting Started with WordPress A Guide to Building Your Website dfsdsdf WordPress is an amazing website building tool. The goal of this ebook is to help you get started building your personal or business

More information

Creating an Email with Constant Contact. A step-by-step guide

Creating an Email with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

HELLO DRUPAL. Your welcome pack to Drupal. Prepared by. for the Drupal community

HELLO DRUPAL. Your welcome pack to Drupal. Prepared by. for the Drupal community HELLO DRUPAL Your welcome pack to Drupal Prepared by for the Drupal community Please visit http://training.acquia.com/ to learn about Acquia partner s training events Thursday 12 April 2012 1 About Doug

More information

A quick guide to setting up your new website

A quick guide to setting up your new website A quick guide to setting up your new website Hi there. Welcome to MrSite we re really happy you chose to build your brand new website with us and look forward to seeing what you create! We re sure you

More information

G-Lock WPNewsman WordPress Plugin Reviewer s Guide

G-Lock WPNewsman WordPress Plugin Reviewer s Guide G-Lock WPNewsman WordPress Plugin Reviewer s Guide 1 Table of Contents This document is your reviewer's guide for G-Lock WPNewsman WordPress Plugin. It is designed to provide you with information you need

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

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

Getting Started Guide. Getting Started With Quick Shopping Cart. Setting up and configuring your online storefront.

Getting Started Guide. Getting Started With Quick Shopping Cart. Setting up and configuring your online storefront. Getting Started Guide Getting Started With Quick Shopping Cart Setting up and configuring your online storefront. Getting Started with Quick Shopping Cart Version 1.2 (12.17.08) Copyright 2007. All rights

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

ADMINISTRATOR GUIDE VERSION

ADMINISTRATOR GUIDE VERSION ADMINISTRATOR GUIDE VERSION 4.0 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Microsoft Office Access 2007 Training

Microsoft Office Access 2007 Training Mississippi College presents: Microsoft Office Access 2007 Training Course contents Overview: Fast, easy, simple Lesson 1: A new beginning Lesson 2: OK, back to work Lesson 3: Save your files in the format

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

TopBest Documentation Guide

TopBest Documentation Guide TopBest Documentation Guide Theme Options Theme Options is the core of the theme itself, everything is controlled in the using the theme options. To access the theme options go to your wordpress admin

More information

Content Management Systems versus Flat Files Open Source versus Closed Selecting a Content Management System Drupal A Note about Drupal Versions

Content Management Systems versus Flat Files Open Source versus Closed Selecting a Content Management System Drupal A Note about Drupal Versions 1 INTRODUCTION Content Management Systems versus Flat Files Open Source versus Closed Selecting a Content Management System Drupal A Note about Drupal Versions Drupal is a powerful tool for managing web

More information

Website in a box 2.0 Users Guide. Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box

Website in a box 2.0 Users Guide. Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box Website in a box 2.0 Users Guide Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box Welcome to the new website in a box. We ve created a new, lighter, fresher and more

More information

InterMetro Legacy CMS to Drupal Migration

InterMetro Legacy CMS to Drupal Migration InterMetro Legacy CMS to Drupal Migration Client : InterMetro Industry : ecommerce Offering : Drupal Migration OBJECTIVE InterMetro is a subsidiary of Emerson Electric Corporation, a Fortune 100 company

More information

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit Page 1 Table of contents: 1. SEO Toolkit: General Settings..3 2. Product Reviews: Settings...4 3. Product Reviews: Examples......5

More information

Vodafone Hosted Services. Getting started. User guide

Vodafone Hosted Services. Getting started. User guide Vodafone Hosted Services Getting started User guide Vodafone Hosted Services getting started Welcome. Vodafone Hosted Services has been designed to make it as easy as possible to keep control over your

More information

Creating an Email with Constant Contact. A step-by-step guide

Creating an Email with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

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

Introduction to Open Atrium s workflow

Introduction to Open Atrium s workflow Okay welcome everybody! Thanks for attending the webinar today, my name is Mike Potter and we're going to be doing a demonstration today of some really exciting new features in open atrium 2 for handling

More information

Drupal in the Trenches

Drupal in the Trenches Drupal in the Trenches Four Troubleshooting Tactics to Solve Real-World Problems on the Content Management Platform For enterprises using the open source Drupal platform, it can often be difficult to determine

More information

webtree designs Gayle Pyfrom web site design and development Lakewood, CO 80226 info@webtreedesigns.com

webtree designs Gayle Pyfrom web site design and development Lakewood, CO 80226 info@webtreedesigns.com webtree designs Gayle Pyfrom web site design and development Lakewood, CO 80226 info@webtreedesigns.com INTRODUCTION The goal of this presentation is to provide an overview of using Joomla! to create your

More information

QualysGuard WAS. Getting Started Guide Version 4.1. April 24, 2015

QualysGuard WAS. Getting Started Guide Version 4.1. April 24, 2015 QualysGuard WAS Getting Started Guide Version 4.1 April 24, 2015 Copyright 2011-2015 by Qualys, Inc. All Rights Reserved. Qualys, the Qualys logo and QualysGuard are registered trademarks of Qualys, Inc.

More information

FAQs. How do I remove the search bar completely?

FAQs. How do I remove the search bar completely? FAQs Company Logo How do I change the logo? Can I make the logo larger or smaller? How do I add change or remove the logo in the footer? Can I add a favicon? Navigation Menu How do I change my navigation

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

UCSF Drupal Web Starter Kit Basic Training Guide

UCSF Drupal Web Starter Kit Basic Training Guide UCSF Drupal Web Starter Kit Basic Training Guide This is an image of your default home or front page Brought to you in partnership with Chapter 3 Owner: Web Site URL: Drupal Username: Drupal Password:

More information

THE PLAN FOR TODAY. Welcome to Camp Tech!

THE PLAN FOR TODAY. Welcome to Camp Tech! CAMPTECH.CA THE PLAN FOR TODAY 1. What s the Internet? What s a website? 2. WordPress basics What is WordPress? WordPress.org vs WordPress.com Installing WordPress 3. Add your content Posts, pages, menus,

More information

Business Information. IMPORTANT! Areas marked with an asterisk (*) are required. Business or organization name* Mailing Address* Street Address

Business Information. IMPORTANT! Areas marked with an asterisk (*) are required. Business or organization name* Mailing Address* Street Address Web Design Worksheet This form will take 30 to 45 minutes to complete and will insure you get the site you want and need for your business or organization. Take your time and fill it out completely it

More information

REQUIREMENTS GATHERING FORM OVERVIEW

REQUIREMENTS GATHERING FORM OVERVIEW REQUIREMENTS GATHERING FORM OVERVIEW Smaller projects can typically be assessed and defined in meeting duration of 1-3 hours. Larger projects may take longer and need to be broken up into multiple sessions

More information

Colleen s Interview With Ivan Kolev

Colleen s Interview With Ivan Kolev Colleen s Interview With Ivan Kolev COLLEEN: [TO MY READERS] Hello, everyone, today I d like to welcome you to my interview with Ivan Kolev (affectionately known as Coolice). Hi there, Ivan, and thank

More information

How to work with the WordPress themes

How to work with the WordPress themes How to work with the WordPress themes The WordPress themes work on the same basic principle as our regular store templates - they connect to our system and get data about the web hosting services, which

More information

Simple Tips to Improve Drupal Performance: No Coding Required. By Erik Webb, Senior Technical Consultant, Acquia

Simple Tips to Improve Drupal Performance: No Coding Required. By Erik Webb, Senior Technical Consultant, Acquia Simple Tips to Improve Drupal Performance: No Coding Required By Erik Webb, Senior Technical Consultant, Acquia Table of Contents Introduction................................................ 3 Types of

More information

CREATING YOUR OWN PROFESSIONAL WEBSITE

CREATING YOUR OWN PROFESSIONAL WEBSITE First go to Google s main page (www.google.com). If you don t already have a Gmail account you will need one to continue. Click on the Gmail link and continue. 1 Go ahead and sign in if you already have

More information

GETTING STARTED WITH DRUPAL. by Stephen Cross

GETTING STARTED WITH DRUPAL. by Stephen Cross GETTING STARTED WITH DRUPAL by Stephen Cross STEPHEN CROSS @stephencross stephen@parallaxmail.com ParallaxInfoTech.com www.talkingdrupal.com ASSUMPTIONS You may or may not have development experience You

More information

Web project proposal. European e-skills Association

Web project proposal. European e-skills Association Web project proposal European e-skills Association LUCISMEDIA WEB DESIGN PROPOSAL CONTENTS Lucismedia... 3 Building enterprise social communities... 3 project objective... 4 Project scope... 6 Interface

More information

The truth about Drupal

The truth about Drupal The truth about Drupal Why Drupal is great Large community of 3rd party developer Quality control over contributed code Most of the indispensable contributed modules are maintained by solid development

More information

1. Manage your Group. 1. Log on to the CampusGroups platform.

1. Manage your Group. 1. Log on to the CampusGroups platform. 1 1. Manage your Group 1. Log on to the CampusGroups platform. 2. Upon logging in, select your club from the Groups drop-down (next to the Home icon) and click on the Manage button next to the group of

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

The Rainmaker Platform Quick-Start Guide

The Rainmaker Platform Quick-Start Guide QUICK-START GUIDE The Rainmaker Platform Quick-Start Guide Get Your Rainmaker Site Set Up and Ready to Accelerate Your Business Copyright 2015 Rainmaker Digital, LLC All Rights Reserved. THE RAINMAKER

More information

uilding a Branch Website using Wordpress

uilding a Branch Website using Wordpress Building a branch website using WordPress Building uilding a Branch Website using Wordpress WordPress is a Free and Open Source (FOSS) Content Management System (CMS). It allows you to build websites without

More information

Building Drupal sites using CCK, Views and Panels. Khalid Baheyeldin Drupal Camp, Toronto May 11 12, 2007 http://2bits.com

Building Drupal sites using CCK, Views and Panels. Khalid Baheyeldin Drupal Camp, Toronto May 11 12, 2007 http://2bits.com Building Drupal sites using CCK, Views and Panels Khalid Baheyeldin Drupal Camp, Toronto May 11 12, 2007 http://2bits.com Agenda Introduction CCK (Content Construction Kit) Views Panels Demo of all of

More information

How To - Add extra content to your site

How To - Add extra content to your site How To - Add extra content to your site Difficulty: Beginner Once you've got the hang of adding standard content to a Clikpic site - such as photos and articles - you'll soon want to add some of your own

More information

Resource Guide: Developing for Mobile on Drupal

Resource Guide: Developing for Mobile on Drupal Resource Guide: Developing for Mobile on Drupal Delivering content today requires broad flexibility, at least if you want to do it well across all possible devices. Drupal offers a terrific platform for

More information

Open Source Content Management System for content development: a comparative study

Open Source Content Management System for content development: a comparative study Open Source Content Management System for content development: a comparative study D. P. Tripathi Assistant Librarian Biju Patnaik Central Library NIT Rourkela dptnitrkl@gmail.com Designing dynamic and

More information

Entrepreneur Systems: Business Systems Development Tool

Entrepreneur Systems: Business Systems Development Tool Creating Your Follow Up System Create an 8 series autoresponder sequence for a prospect Create a 6 series autoresponder sequence for one of your products or services Create a content template for a newsletter

More information

WebSite Tonight. Getting Started Guide. Getting Your Personal Website Online in One Night. WebSite Tonight // A Wedding Website

WebSite Tonight. Getting Started Guide. Getting Your Personal Website Online in One Night. WebSite Tonight // A Wedding Website Getting Started Guide WebSite Tonight Getting Your Personal Website Online in One Night Getting Started Guide Page 1 Getting Started Guide: WebSite Tonight A Wedding Website Version 1.0 (03.08.10) Copyright

More information

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family

css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title PORT JERVIS CENTRAL SCHOOL

More information

How to Use. for Business

How to Use. for Business How to Use for Business http:// Become a Fan of HubSpot on Facebook: http://facebook.hubspot.com Join the Pro Marketers Group on Facebook: http://facebook.promarketers.com Grade Your Facebook Profile or

More information

The basics in ecommerce SEO

The basics in ecommerce SEO 29 pages of expert advice The basics in ecommerce SEO With this advice you ll be able to create and optimise your Actinic ecommerce website for search engines. Our experts outline good SEO practice for

More information

Build it with Drupal 8

Build it with Drupal 8 Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version

More information

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming.

Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com and he has 8 years of experience in real time programming. Website: http://www.php2ranjan.com/ Contact person: Ranjan Mob: 09347045052, 09032803895 Domalguda, Hyderabad Email: purusingh2004@gmail.com Trainer name is P. Ranjan Raja. He is honour of www.php2ranjan.com

More information

Website Planning Questionnaire. Introduction. Thank you for your interest in the services of The Ultimate Answer!

Website Planning Questionnaire. Introduction. Thank you for your interest in the services of The Ultimate Answer! Website Planning Questionnaire Colleen Rice Nelson Introduction Thank you for your interest in the services of The Ultimate Answer! Every choice and decision you make concerning your website may or may

More information

My Contact Management and Reporting Features. The New Look & Feel

My Contact Management and Reporting Features. The New Look & Feel My Contact Management and Reporting Features The New Look & Feel We ve made some enhancements to the contact management and reporting features within your Constant Contact account! You ll be able to do

More information

Computer Assisted Language Learning. Blogger Tutorial

Computer Assisted Language Learning. Blogger Tutorial Blogger Tutorial While there are many, many blogging applications out there, I think that the easiest by far is Blogger. I personally use Blogger, in some form, for the 4 blogs that I currently run. Even

More information

Content Manager User Guide Information Technology Web Services

Content Manager User Guide Information Technology Web Services Content Manager User Guide Information Technology Web Services The login information in this guide is for training purposes only in a test environment. The login information will change and be redistributed

More information

MASTER DRUPAL 7 MODULE DEVELOPMENT

MASTER DRUPAL 7 MODULE DEVELOPMENT MASTER DRUPAL 7 MODULE DEVELOPMENT by blair wadman sample available for purchase at http://befused.com/master-drupal/ LESSON 1 INTRODUCTION In this section, you will be introduced to the core Drupal concepts

More information

A Step- by- Step Guide for Building a Website for Your Business

A Step- by- Step Guide for Building a Website for Your Business 1 A Step- by- Step Guide for Building a Website for Your Business 2 Ge#ng Started With Your Website A well-built website is the foundation of your business And as we ve mentioned before, there s no better

More information

IEEE Web Hosting (EWH)

IEEE Web Hosting (EWH) IEEE Web Hosting (EWH) Khanh Luu Information Management Analyst MGA k.n.luu@ieee.org Agenda Introduction to IEEE web hosting services ( EWH, WordPress and WebInABox). Quick tutorial on updating EWH websites

More information

Create Beautiful Reports with AWR Cloud and Prove the Value of Your SEO Efforts

Create Beautiful Reports with AWR Cloud and Prove the Value of Your SEO Efforts Create Beautiful Reports with AWR Cloud and Prove the Value of Your SEO Efforts It can be difficult sometimes to show your clients the value that they get from your service. Your job, as an SEO, is to

More information

CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR

CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR Drupal Website CKeditor Tutorials - Adding Blog Posts, Images & Web Pages with the CKeditor module The Drupal CKEditor Interface CREATING AND EDITING CONTENT AND BLOG POSTS WITH THE DRUPAL CKEDITOR "FINDING

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

Drupal Node Overview. Attendee Guide. Prepared for: EDT502, Fall 2007, Dr. Savenye Prepared by: Jeff Beeman. November 26, 2007 EDT502 Final Project

Drupal Node Overview. Attendee Guide. Prepared for: EDT502, Fall 2007, Dr. Savenye Prepared by: Jeff Beeman. November 26, 2007 EDT502 Final Project Drupal Node Overview Attendee Guide Prepared for: EDT502, Fall 2007, Dr. Savenye Prepared by: Jeff Beeman November 26, 2007 EDT502 Final Project Table of Contents Introduction 3 Program Content and Purpose

More information

WIX: Building a Website with a Template. Choosing a Template First you will need to choose a template from the Create section of the Wix website.

WIX: Building a Website with a Template. Choosing a Template First you will need to choose a template from the Create section of the Wix website. WIX: Building a Website with a Template Choosing a Template First you will need to choose a template from the Create section of the Wix website. To choose a template: 1. Go to wix.com. 2. From the top

More information

Search Engine Optimization

Search Engine Optimization Search Engine Optimization Search An Introductory Guide How to improve the effectiveness of your web site through better search engine results. As you ve probably learned, having a Web site is almost a

More information

CHECKLIST: BY ARIANNE FOULKS

CHECKLIST: BY ARIANNE FOULKS CHECKLIST: Ecommerce Setup BY ARIANNE FOULKS When you re ready to start selling online, you may feel overwhelmed with options. Just figuring out how to get started can be daunting. There are many things

More information

Access Edit Menu... 2. Edit Existing Page... 3. Auto URL Aliases... 5. Page Content Editor... 7. Create a New Page... 17. Page Content List...

Access Edit Menu... 2. Edit Existing Page... 3. Auto URL Aliases... 5. Page Content Editor... 7. Create a New Page... 17. Page Content List... DRUPAL EDITOR Content Management Instructions TABLE OF CONTENTS Access Edit Menu... 2 Edit Existing Page... 3 Auto URL Aliases... 5 Page Content Editor... 7 Create a New Page... 17 Page Content List...

More information

for Business A guide to Pinterest Analytics

for Business A guide to Pinterest Analytics A guide to Pinterest Analytics With Pinterest Analytics, learn more about your audience and how Pinterest works for you Version 06.16.2015 A guide to Pinterest Analytics 2 Table of contents 01 Pinterest

More information

Navigate to http://www.weebly.com/

Navigate to http://www.weebly.com/ Navigate to http://www.weebly.com/ If you have a Weebly page, click on the Log In button If you are new to Weebly, Fill in your Full Name, Email, and Password Click on Sign Up, It s Free! Key in a title

More information

How to Create a Simple WordPress Store Online for Free

How to Create a Simple WordPress Store Online for Free How to Create a Simple WordPress Store Online for Free The Internet is one of the most fertile grounds on which you can build a business to sell your products or services. This is because of the fact that

More information

Absolute Beginner s Guide to Drupal

Absolute Beginner s Guide to Drupal Absolute Beginner s Guide to Drupal 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay Drupal

More information

Drupal. open source^ community experience distilled. 7 Business Solutions. Build powerful website features for your business. Trevor James.

Drupal. open source^ community experience distilled. 7 Business Solutions. Build powerful website features for your business. Trevor James. Drupal 7 Business Solutions Build powerful website features for your business Trevor James Mark Noble PUBLISHING o open source^ community experience distilled - BIRMINGHAM MUMBAI Preface 1 Chapter 1: Planning

More information

At Divio we do Communication. Creativity. Ideas.

At Divio we do Communication. Creativity. Ideas. At Divio we do Communication. Creativity. Ideas. We build big brands and deep relationships. And we love to code with Python This is our vision of the new Python.org Goals Goals After reading the brief

More information

17 of the Internet s Best Banner Ads. Love em or Hate em They Do Work!

17 of the Internet s Best Banner Ads. Love em or Hate em They Do Work! Love em or Hate em They Do Work! Banner Ads What are they? Ever since the Internet started to take off in the mid 90 s, banner ads have been an acceptable way of advertising on the Web. Banner ads come

More information

Marketo Emails, Automation, and Drip Campaigns User Guide

Marketo Emails, Automation, and Drip Campaigns User Guide Marketo Emails, Automation, and Drip Campaigns User Guide Email Setup Email campaigns are a basic function of a marketing program. While you don t need a lot of planning to do a simple email campaign,

More information

Content Management Systems: Drupal Vs Jahia

Content Management Systems: Drupal Vs Jahia Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. mrudula@ksu.edu Abstract Content Management Systems

More information

Building Your First Drupal 8 Site

Building Your First Drupal 8 Site Building Websites with Drupal: Learn from the Experts Article Series Building Your First Drupal 8 Site by Todd Tomlinson April, 2014 Unicon is a Registered Trademark of Unicon, Inc. All other product or

More information

Drupal Site Administration Guide. Cal Poly Specific Information

Drupal Site Administration Guide. Cal Poly Specific Information Drupal Site Administration Guide Cal Poly Specific Information Revised April, 2013 CTLT Revised April 2013 Table of Contents Site Administrator Basics...1 About the Site Administrator Role...1 Access and

More information