<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alpha Multimedia Solutions, Inc &#187; web</title>
	<atom:link href="http://www.alpha-multimedia.com/category/web/feed" rel="self" type="application/rss+xml" />
	<link>http://www.alpha-multimedia.com</link>
	<description>Alpha Multimedia Solutions provides custom web development and creative digital video production services for corporations, agencies and designers.</description>
	<lastBuildDate>Wed, 02 Sep 2009 23:04:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Brooklyn_Brewery</title>
		<link>http://www.alpha-multimedia.com/brooklyn-brewery</link>
		<comments>http://www.alpha-multimedia.com/brooklyn-brewery#comments</comments>
		<pubDate>Wed, 02 Sep 2009 17:39:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://www.alpha-multimedia.com/?p=1003</guid>
		<description><![CDATA[ALPHA crafted Brooklyn Brewery's site into an effervescent, Flash-savvy interactive store.]]></description>
			<content:encoded><![CDATA[<p>As an emerging manufacturer of micro-brewed beer, <a href="http://www.brooklynbrewery.com/">Brooklyn Brewery</a> wanted to establish their brand with merchandise available through a user-friendly website that ran on an open-source platform. It was important for the company to have a highly-functional and adaptable e-commerce presence, but they also required custom content-management for a handful of Flash pieces, intended to inject some boast-worthy bubbles to the site.  </p>
<p>Using the designs and Flash sections from <a href="http://www.thefuturefriends.com/">Future Friends</a>, ALPHA developed custom content modules that managed Brooklyn Brewery&#8217;s Flash blocks and helped to integrate the visual elements into a cohesive, functional website. By converting the existing site architecture to an open-source marketplace and shopping cart, ALPHA gave Brooklyn Brewery a flexible framework to easily accommodate future features for their refreshing new domain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/brooklyn-brewery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento_Color_Picker_How_To</title>
		<link>http://www.alpha-multimedia.com/how-to-add-color-picker-to-magento</link>
		<comments>http://www.alpha-multimedia.com/how-to-add-color-picker-to-magento#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:22:42 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.alpha-multimedia.com/?p=1144</guid>
		<description><![CDATA[We recently developed several custom modules for the Magento eCommerce platform. If you need to extend the functionality for Magento, then I strongly urge you to check out this article. Anyhow, in a nutshell, our custom modules enabled admin level users to manage content that would be consumed by Flash components in the front end [...]]]></description>
			<content:encoded><![CDATA[<p>We recently developed several custom modules for the <a href="http://www.magentocommerce.com/">Magento eCommerce</a> platform. If you need to extend the functionality for Magento, then I strongly urge you to check out this <a href="http://www.magentocommerce.com/wiki/custom_module_with_custom_database_table">article</a>. Anyhow, in a nutshell, our custom modules enabled admin level users to manage content that would be consumed by Flash components in the front end facing part of the site. Most of the content entry was accomplished by using the out of the box input types provided by the Magento API. However, we had the requirement to use a color swatch picker which does not currently exist in the Magento API. </p>
<p>The Colorpicker behaves as one might expect &#8211; by clicking into the color field, a popup box will appear. Any selection made in the popup will be populated into the text field as a hex value.</p>
<p>This article will outline how to add the color picker to the custom modules created in the previous link. See the image below for how it will appear.</p>
<p><img src="http://www.alpha-multimedia.com/wp-content/uploads/final-screen-grab.JPG" alt="final-screen-grab" title="final-screen-grab" width="500" height="250" class="aligncenter size-full wp-image-1148" /></p>
<p>1) Create the Colorpicker.php file in /lib/Varien/Data/Form/Element/. This file will contain the Colorpicker class.  It will only contain two methods (constructor and getElementHTML) and will be based off of the textfield input type.   The getElementHTML method the renders the final HTML to the screen (a color box positioned to the right of a textfield).  The class in all it&#8217;s glory can be downloaded here.</p>
<p>2)  Add JS libraries. We’re using the excellent Color Picker found <a href="http://www.knallgrau.at/code/colorpicker/">here</a>.   Under the Magento root, create a directory under js named colorpicker (lowercase) add add the following files: colorPicker.css, colorPicker.js, yahoo.color.js. There should also be an img directory for the colorpicker popup – be sure it is included as well.  ColorPicker requires prototype.js, yahoo.color.js, and script.aculo.us.  With the exception of yahoo.color.js, the others should already be present in the Magento project tree.</p>
<p>3) Update main.config (/app/design/adminhtml/default/default/layout). This will instruct the admin site to include the necessary CSS and JS files.  The files are listed below:<br />
colorpicker/yahoo.color.js<br />
colorpicker/colorPicker.js<br />
colorpicker/colorPicker.css</p>
<p>4)	Usage. Ok – so everything is setup up for you to use the Colorpicker.   I will assume that you are using the custom module creator and have a file named Form.php (within a custom created module named Events)  In the _prepareForm method, you will add the new input type as follows:<br />
<code><br />
         $fieldset->addField('primarycolor', 'colorpicker', array(<br />
                     'label'     => Mage::helper(‘Events’)->__('Primary Color'),<br />
                     'class'     => 'required-entry',<br />
                     'required'  => true,<br />
                     'name'      => 'primarycolor',</p>
<p>      ));<br />
</code></p>
<p>I hope this article was helpful.  Again, if you find yourself having to customize Magento, you really have to check out the <a href="http://www.magentocommerce.com/wiki/custom_module_with_custom_database_table">custom module</a>.  Big thanks to Ben Roberts for helping put all the pieces together. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/how-to-add-color-picker-to-magento/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SilverStripe</title>
		<link>http://www.alpha-multimedia.com/silverstripe</link>
		<comments>http://www.alpha-multimedia.com/silverstripe#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:21:24 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[silverstripe]]></category>

		<guid isPermaLink="false">http://www.alpha-multimedia.com/?p=843</guid>
		<description><![CDATA[Here it is. The <a href="http://www.silverstripe.org">SilverStripe </a>skinny.

Bottom line: it rocks.]]></description>
			<content:encoded><![CDATA[<p>Here it is. The <a href="http://www.silverstripe.org">SilverStripe </a>skinny.</p>
<p>Bottom line: it rocks.</p>
<p><img class="alignleft size-full wp-image-852" title="ss" src="http://www.alpha-multimedia.com/wp-content/uploads/ss.gif" alt="ss" width="66" height="64" />We’re not going to sit here ranting and raving about something without giving you the facts. Recently we had the opportunity to launch<br />
a <a href="http://www.andrewfieldmusic.com">client </a>site using SilverStripe and here is what we found:</p>
<p>1) <strong>Reduced development time when compared to Wordpress.</strong> Designers don’t have to wrestle with the Wordpress loop. SilverStripe is a true CMS, not a hacked impostor. Creating a theme was smooth and fast. It was easy to create page templates for each of our page types and then select which pages would use them.</p>
<p>2) <strong>More out of the box features.</strong> Google Sitemap, SEO meta data, captcha, caching, form editor/creator are available from the moment of installation.  SilverStripe may not offer many modules as compared to other platforms, but out of the box, it offers a powerful list of common features that all CMS platforms should encompass.</p>
<p>3) <strong>Easily extended.</strong> SilverStripe is built on a well thought out MVC framework called Sapphire. If you have any experience using MVC (<a href="http://cakephp.org/">CakePHP</a>, <a href="http://www.symfony-project.org/">Symfony</a>, <a href="http://rubyonrails.org/">Ruby on Rails</a>), extending SilverStripe is quick and does not violate core code or pollute the overall code base. Often, we deal in a gray zone between existing features and new custom features and SilverStripe addresses the issue well.</p>
<p>4) <strong>Well documented API</strong>. We were amazed at how quickly we were able to tweak our templates to get exactly what we wanted without creating much custom code, with just familiarizing ourselves with the powerful API.</p>
<p>Ah, now for some of the drawbacks that we discovered:</p>
<p>1) <strong>It&#8217;s new. </strong>The community isn&#8217;t as robust or as large as more established open source initiatives. Not yet.</p>
<p>2) <strong>Upgrade path still manual</strong>. It’s still a manual process to upgrade SilverStripe unlike the more push button wizard-like interface available with WPAU.</p>
<p>3) <strong>Theme editiing.</strong> Cannot select a different them via the admin backend, nor can you perform theme edits from the Admin backend. The latter is not an issue for us, since all our files are source controlled, and editing the file online would violate this.</p>
<p>We&#8217;re pretty confident that <a href="http://www.silverstripe.org">SilverStripe </a>has a great future and we&#8217;re looking forward to future releases and improvements.  I encourage you to check them out and see if their solution works for you and become part of the growing community.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/silverstripe/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C-TRAN</title>
		<link>http://www.alpha-multimedia.com/c-tran</link>
		<comments>http://www.alpha-multimedia.com/c-tran#comments</comments>
		<pubDate>Mon, 09 Feb 2009 17:10:41 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>

		<guid isPermaLink="false">http://www.alpha-multimedia.com/?p=731</guid>
		<description><![CDATA[C-TRAN wanted to improve their online presence and create a simple approach to updating and managing site content. ]]></description>
			<content:encoded><![CDATA[<p>C-TRAN, the transportation authority for the Vancouver, Washington area, wanted to improve their online presence and create a simple, streamlined approach on how to update and manage site content.  They wanted to replace FTP as a content management system with a robust system that was easy to update. Not just pages but Rider Alerts, News and Events.</p>
<p>Alpha was provided initial designs by Rocketshop Design and developed the static design comps into a robust content management system.  In order to provide the site visitors with relevant information, the site also integrates with a third party trip planning tool that enables visitors to create a trip plan that includes bus and rail routes.</p>
<p>Our development decisions have proven to be scalable such that new features can be added in with little development time, ensuring that the CTRAN is capable of sustaining the demand from their large online audience.  We continually work with CTRAN delivering new features and perfecting the user experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/c-tran/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s_on_the_Radar</title>
		<link>http://www.alpha-multimedia.com/2009-whats-on-the-radar</link>
		<comments>http://www.alpha-multimedia.com/2009-whats-on-the-radar#comments</comments>
		<pubDate>Tue, 06 Jan 2009 18:24:52 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.alpha-multimedia.com/?p=695</guid>
		<description><![CDATA[We ushered in 2009 with many warm congratulations from our peers as our new website launched. Thanks to each and everyone of you who took the time to check out our site.
The new year brings many exciting new prospects that we will be investigating and discussing on this blog. We are constantly reviewing new technology, [...]]]></description>
			<content:encoded><![CDATA[<p>We ushered in 2009 with many warm congratulations from our peers as our new website launched. Thanks to each and everyone of you who took the time to check out our site.</p>
<p>The new year brings many exciting new prospects that we will be investigating and discussing on this blog. We are constantly reviewing new technology, almost at an exhaustive pace, constantly inspecting how a new piece of software or technology approach can improve our efficiency and quality.</p>
<p>The short list (I&#8217;ll keep it brief):<br />
1) <strong>Rails 3</strong> (Notably <a href="http://rubyonrails.org/merb">Merb</a> is being merged into Rails 3 to further provide more options for developers). Rails is getting better and better.  Any excuse of it not being enterprise ready are immature at this point.<br />
2) <strong>Symfony 1.2</strong>. Although released in 2008, we have not had time to explore the new API. Perhaps the biggest change is Doctrine is now a first class citizen (like Propel), giving developers an ORM choice. The Alpha team are big fans of the <a href="http://www.symfony-project.org">Symfony</a> framework and we look forward to giving the new API a thorough review.<br />
3) <strong>Silverstripe CMS</strong>. An incredible new open-source CMS and application framework (Sapphire) is on the internets and it&#8217;s not getting the fanfare it deserves. From our initial investigation, <a href="http://www.silverstripe.org/">Silverstripe</a> looks awesome and incredibly powerful and easy to use. We took it out for a test drive and we&#8217;re impressed in what we found.<br />
4) <strong>Cloud Computing</strong>. There are several new hosting solutions out there offering robust cloud solutions to the masses. One such outfit is <a href="http://www.mosso.com/">Mosso</a>. Look for them to release SSH and root access in Q1 2009. With their existing tools and hardware in place, it will be a product offering many developers can not do without.  It is certainly one we are eagerly anticipating.</p>
<p>Look for upcoming blog posts exploring each of the above listed items in detail with practical code examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/2009-whats-on-the-radar/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://www.alpha-multimedia.com/welcome</link>
		<comments>http://www.alpha-multimedia.com/welcome#comments</comments>
		<pubDate>Sat, 25 Oct 2008 22:28:07 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://beta.alpha-multimedia.com/?p=184</guid>
		<description><![CDATA[Finally, after months and months of talking about it, we took the plunge and totally redesigned our website.  Like most redesigns, it involved not just devising a new look and feel, but first identifying what it is we want to achieve and re-evaluating our organizational goals. The site showcases both our web and video [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alpha-multimedia.com"><img class="alignright size-full wp-image-612" title="New Alpha Website" src="http://www.alpha-multimedia.com/wp-content/uploads/home.jpg" alt="" width="200" height="249" /></a>Finally, after months and months of talking about it, we took the plunge and totally redesigned our website.  Like most redesigns, it involved not just devising a new look and feel, but first identifying what it is we want to achieve and re-evaluating our organizational goals. The site showcases both our web and video expertise and we provide plenty of imagery to help tell our stories.</p>
<p>Big thanks to the design and development team that made this happen. We pulled out all the stops and we&#8217;re really happy with the results.  After being incredibly busy for the last year, it was very rewarding to have finished this in 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/welcome/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Lanikai_Properties</title>
		<link>http://www.alpha-multimedia.com/lanikai-properties</link>
		<comments>http://www.alpha-multimedia.com/lanikai-properties#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:49:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>

		<guid isPermaLink="false">http://beta.alpha-multimedia.com//?p=82</guid>
		<description><![CDATA[Web development and Search Engine Optimization that brings paradise closer to home.]]></description>
			<content:encoded><![CDATA[<p>Hawaii boasts a reputation for being surf-bum heaven, which presents a challenge when trying to attract property investors who are accustomed to urban chic. Allison Green of Lanikai Properties was looking to develop a website that would beckon both investors from the mainland as well as local families. She was looking for a balance between aloha and à la mode.</p>
<p>Alpha sat down with Allison and together crafted the scope of the site, from targeting her desired audience to identifying which specific features Lanikai required. We were faced with the challenge of marketing an exclusive area to a target audience that ranged from first-time home buyers to older families looking to relocate. We also needed to balance the message so that Lanakai could reach out to clients from both the mainland as well as local Hawaiians. We kept in mind that the majority of clientele would be older and more established, expecting the island repose that Hawaii is known for. Working from an information architecture plan, we set to work building a site that would have both a glimmer of nostalgia and a personal allure that would emotionally connect prospective clients to Allison Green. Stylistically, we achieved our goal by showcasing the properties on a platform that kept the site interactive, visually compelling, and engaging. From a development standpoint, we worked to convert the design into XHTML through cross-browser testing. The result was a one-of-a-kind website that spoke to individual visitors, a web-based welcome mat.</p>
<p>As we continued our dialog with Allison, we were able to integrate Search Engine Optimization for Lanikai, post-launch. Our design helped establish a solid foundation that made the implementation process efficient and provided an uninterrupted experience to those clicking on the site. We integrated additional content creators to the home page to increase keyword frequence, we renamed URLs, and a we brought in a Wordpress blogging as a CMS. Our modifications helped to streamline and enhance the Lanikai online experience, while preserving the exemplary website that we worked to create.</p>
<p><strong>What was the most challenging aspect of the project?</strong><br />
Creating a unique design that would really set Lanikai Properties apart from the rest of the pack but at the same time connecting with their target audience was difficult. I think stylistically, we have achieved our goal. From a development standpoint, converting the design into XHTML was a real challenge that really pushed our development, especially during cross browser testing.</p>
<p><strong>How did Search Engine Optimization influence your design and application architecture?</strong><br />
Unfortunately, SEO was a follow up project and did not influence design or our application selection/development at all. However, the impact upon the design and development during the SEO phase was significant. Additional content containers were added to the home page to increase keyword frequency, much of the copy was re-written and several of the URLs were renamed. We used the Wordpress blogging engine as a CMS, and these modifications were fairly straightforward.</p>
<p><a href="mailto:&#106;&#111;&#101;&#64;&#97;&#108;&#112;&#104;&#97;&#45;&#109;&#117;&#108;&#116;&#105;&#109;&#101;&#100;&#105;&#97;&#46;&#99;&#111;&#109;"><img class="size-full wp-image-364 alignleft" title="questions_joe" src="http://alpha-multimedia.com/wp-content/uploads/questions_joe.jpg" alt="" width="307" height="126" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/lanikai-properties/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cottonseed_Oil_Tour</title>
		<link>http://www.alpha-multimedia.com/cottonseed-oil-tour</link>
		<comments>http://www.alpha-multimedia.com/cottonseed-oil-tour#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:39:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>

		<guid isPermaLink="false">http://beta.alpha-multimedia.com//?p=78</guid>
		<description><![CDATA[Alpha built a site that greased the Cottonseed Oil campaign's wheels.]]></description>
			<content:encoded><![CDATA[<p>Cottonseed Oil is America&#8217;s original vegetable oil. On behalf of its client, the National Cottonseed Products Association, <a title="Havest PR" href="http://www.harvest-pr.com/">Harvest PR</a> launched a food-industry-targeted ground campaign to spread awareness about cottonseed oil and revitalize its image. They needed a website that would serve as the tour&#8217;s supplementary material, highlighting cottonseed oil success stories and mapping their stops.</p>
<p>The client&#8217;s primary request was that we create a visually arresting site that had a transparent, intuitive back-end, so that staffers in the field could make updates to the content quickly and easily without the need for our assistance. We designed the entire site so that it could be juiced by Wordpress. This enabled us to take advantage of Wordpress&#8217; eminent blogging feature.</p>
<p>ALPHA crafted a website around this architecture that showcases various stops along the tour, providing in-depth supplementary information about cottonseed oil and its myriad of uses, from its use by popular potato chip companies to its oft-ignored health benefits. The site&#8217;s blog features tour news and incorporates content management tools that allow for simple updates from any web browser. Additional search-engine marketing helps support the site and draws fresh traffic.</p>
<p><strong></strong></p>
<p><strong>What were some of the specific features that the client requested?</strong><br />
The only pressing technical feature was that the client needed to be able to update site content easily and quickly. The site would follow a larger marketing and PR campaign, and staffers from the field needed to contribute from the road.  This was accomplished with a Wordpress Blog. The entire site is powered with Wordpress, and the blogging feature, which is what the staffers really needed, is a basic out of the box feature with Wordpress.</p>
<p><a href="mailto:&#106;&#111;&#101;&#64;&#97;&#108;&#112;&#104;&#97;&#45;&#109;&#117;&#108;&#116;&#105;&#109;&#101;&#100;&#105;&#97;&#46;&#99;&#111;&#109;"><img class="size-full wp-image-364 alignleft" title="Contact Joe about your web project." src="http://alpha-multimedia.com/wp-content/uploads/questions_joe.jpg" alt="" width="307" height="126" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/cottonseed-oil-tour/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CompView</title>
		<link>http://www.alpha-multimedia.com/compview</link>
		<comments>http://www.alpha-multimedia.com/compview#comments</comments>
		<pubDate>Tue, 21 Oct 2008 19:17:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>

		<guid isPermaLink="false">http://beta.alpha-multimedia.com//?p=53</guid>
		<description><![CDATA[Giving an audio/visual authority a website that showcased their scope.]]></description>
			<content:encoded><![CDATA[<p>CompView had outgrown its website. With a glut of project installations, a vast array of content, and a broadened audience, they faced the issue of having expanded at a rate that their old site couldn’t handle. They needed to present themselves as the powerhouse they’d become, so they approached Alpha for an extensive redesign that would elevate their website up to the caliber of service they delivered.</p>
<p>Alpha began by identifying CompView’s target audience and produced use cases along with streamlined Information Architecture. These use cases were essential to the restructuring because they helped to identify how CompView’s target audience would interact with the site, and what specific information potential clients would look for.</p>
<p>After extensive surveying, Alpha became convinced that CompView needed to pare down the focus of their website in order to produce a succinct user experience. They agreed, and we built the site with a emphasis on two primary demographics, while CompView augmented their off-site marketing in order to reach their enormous client pool.</p>
<p>CompView’s web administration staff was looking for a simple way to update site content without using Dreamweaver or FTP. Keeping this in mind, we created a custom content management system (CMS) that enabled them to both modify text, manage their case study gallery, oversee their product inventory, and upload supporting documents. It was also necessary for the site to integrate with Infocommiq, a third-party product catalog vendor used in the electronics industry. We were able to achieve these goals with updated and unique application architecture.</p>
<p>Search Engine Optimization played a special role in our design of the CompView site. The top navigation needed to be flexible enough to accommodate the often verbose SEO navigation title, while also having a design that could store several copy-heavy content buckets. The CompView content allowed us to identify target words and phrases early in the project, which helped to guide us as we rewrote the copy. Each of our content types needed to support meta-data as we reached the application phase, both page content and module types. Most of the meta-data was managed via the CompView custom CMS, but some of the higher-level meta-data needed to be stored in a configuration file for performance purposes.</p>
<p>We were lucky to start with a company who had the happy predicament of outgrowing its previous website. By working with laser-precise focus we were able to identify the inimitable and necessary traits that would keep CompView a dominant force in the A/V field.</p>
<p><strong>What was the most challenging aspect of the project?</strong><br />
After initial surveys with the staff at CompView, the target audience was exceedingly broad, and they were clear that the site needed to address each of these distinct user groups. Our initial discoveries involved us creating several user funnels that would have to translate into a succinct user experience. However, after further research, we realized that we could not accommodate every user group and recommended that we only target the top two demographics which would allow us to focus on a tighter Information Architecture and design. The client agreed, and internally, it forced them to refocus their off-site marketing.</p>
<p><strong>What were some of the specific features that the client requested?</strong><br />
Although the web administration staff are web savvy, they were looking for a simple way to update content on their site without using Dreamweaver and FTP.  We created a custom content management system that enabled them to not only modify text on the site, but also manage their case study gallery, product inventory and upload supporting documents as well.  The site also had to integrate with Infocommiq &#8211; a third party product catalog vendor used in the electronics industry. This was accomplished through the application architecture.</p>
<p><strong>How did Search Engine Optimization influence your design and application architecture?</strong><br />
Heavily. We used an external SEO consultant and engaged him early in the process. The content was available early in the project, so it allowed us to quickly identify key words and phrases that we should be targeting and involved a fair amount of the content to be rewritten.  From a design perspective, this influenced the top navigation as it had to be flexible enough to accommodate the often verbose SEO navigation title.  Additional, the design had to have accommodate for several content buckets, that would contain further copy.  From an application standpoint, we had to design each of our content types to support meta-data, whether it was a page content type or a module.  Some of the meta-data was managed via the custom CMS, but some of the higher level meta-data was stored in a configuration file (for performance purposes).</p>
<p><a href="mailto:&#106;&#111;&#101;&#64;&#97;&#108;&#112;&#104;&#97;&#45;&#109;&#117;&#108;&#116;&#105;&#109;&#101;&#100;&#105;&#97;&#46;&#99;&#111;&#109;"><img class="size-full wp-image-364 alignleft" title="Contact Joe about your web project." src="http://alpha-multimedia.com/wp-content/uploads/questions_joe.jpg" alt="" width="307" height="126" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/compview/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pistils_Nursery</title>
		<link>http://www.alpha-multimedia.com/pistils-nursery</link>
		<comments>http://www.alpha-multimedia.com/pistils-nursery#comments</comments>
		<pubDate>Tue, 21 Oct 2008 19:16:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[casestudy]]></category>

		<guid isPermaLink="false">http://beta.alpha-multimedia.com//?p=51</guid>
		<description><![CDATA[Helping a Portland nursery grow with a custom Wordpress website and Search Engine Optimization.]]></description>
			<content:encoded><![CDATA[<p>Pistils Nursery is more than just sprouts, seeds, and soil, it’s a meeting place for those who are passionate about horticulture, urban gardening, and home-grown agriculture. They were looking to build a website without the aid of a web developer, and they wanted to be sure they could make updates to the site easily and quickly. Their main concern was to reorganize the existing content in a way that would allow them to maintain a vibrant website as they cultivated their business.</p>
<p>Alpha worked with Pistils to design a Wordpress-based content management system (CMS) that would meet their needs. The main challenge we faced with was streamlining a website that was heavily inundated with graphics. It was imperative to make the site functional, not just visually stunning. We took special consideration to preserve the specific font treatments that were specific to Pistils, and we used SiFR technology that would load the font using a Flash platform with pixel-perfect implementation. Using the Wordpress framework, we created search engine friendly URLs, enabled a SEO Meta Plugin, and made sure that Pistils would continue to rank well as their content ideas flourished.</p>
<p><strong>What was the biggest challenge your team faced during the project?</strong><br />
The challenges included converting a graphic rich design into a functional web site. Special consideration had to be given to the specific font treatments that the client was resolute on keeping. To preserve the font treatments, Alpha used SiFR technology that would load the font using Flash. It is a wonderful design, and we were commited to deliver a pixel perfect implementation.</p>
<p><strong>How did Search Engine Optimization influence your design and application architecture?</strong><br />
We were certainly mindful of SEO despite not having a hard requirement to do so.  The information architecture and content analysis considered how it could be done within the Wordpress framework. This included creating search engine friendly URLs and enabling the SEO Meta Plugin. The strength of the site is in it&#8217;s content &#8211; the team at Pistils is determined to rank well and there is no shortage of content ideas.</p>
<p><a href="mailto:&#106;&#111;&#101;&#64;&#97;&#108;&#112;&#104;&#97;&#45;&#109;&#117;&#108;&#116;&#105;&#109;&#101;&#100;&#105;&#97;&#46;&#99;&#111;&#109;"><img class="size-full wp-image-364 alignleft" title="Contact Joe about your web project." src="http://alpha-multimedia.com/wp-content/uploads/questions_joe.jpg" alt="" width="307" height="126" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alpha-multimedia.com/pistils-nursery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
