Our design process considers every aspect of your site, from easy navigation, to search engine optimization. Whether it's clean or ornamental, your site will look great and function perfectly.
Our design process considers every aspect of your site, from easy navigation, to search engine optimization. Whether it's clean or ornamental, your site will look great and function perfectly.
From online magazines to ecommerce, we can build you a site that is rock solid, easy to use and extremely affordable.
At MR+A, we've got your back: After you're site is complete, we'll be there for service and support whenever you need us.
Some of the most common spam landing in my mailbox these days starts with the subject line, "Rank Your Site Number 1 in Google." These are always from fly-by-night optimization companies promising that their SEO techniques will catapult my site to the top of the search engine charts. These are easily as annoying as emails from Nigerian Princes, and they might as well be coming from the same offices.
Sure, it's possible to rank number one on Google, but for what term? How long will it it take? What will it cost? Will it be for paid search or for organic search? Will it be specific to a single landing page or to the whole site? Will it be qualified traffic that wants to buy a product, or traffic from some link farm in Uzbekistan?
If you're starting out with SEO, the first thing you should realize is that it's not all that difficult to get your site to the first page of Google for "a" term. But it can be a long road to get your site well ranked for the term of your choice. (Even this may not be what you really need because ultimately, the most important SEO term isn't necessarily the one you want, it's the one your visitors are searching for right now. This can often be a term that you haven't even considered and can change over time.)
What spam SEO emails wont tell you about optimizing is that it's not magic: It's a collection of techniques starting with analytic research, creating relevant content, implementing solid site architecture, generating reciprocal links and establishing ongoing engagement with your visitors.
Using these best practices as a foundation, it's then best to focus on specific actions you'd like your visitors to take. If you want to push a certain product, focus on that. Build landing pages with clear calls to action. Follow your visitors throughout your site. And when you're done doing that, it's time to lather, rinse and repeat. It's not necessarily a quick road, but then again, did you really think you were going to get rich overnight from a Nigerian Prince?
Every site owner wants one thing: a better return on their web site investment. In return for their time and money, they want more traffic, higher conversions, higher sales, and a greater audience share. They want their site to come up first on every search engine. They want eyeballs scanning their site 24 hours a day. In short, everyone wants to be a rock star.
But the online world can be a frustrating place, especially for small businesses that don't have a full time staff or large advertising budget to devote to web marketing. And to be fair, it is a bit overwhelming: There are so many variables, so much jargon, so much obscure information that the average web site owner doesn't have the first idea where to start. Should a small business invest in an Search Engine Optimization program? Should it buy advertising? Complete a redesign? And what about Facebook, Twitter feeds and other social networking options? In short, what are the keys to getting a better return on a small business website?
I'm going to spend the next several weeks trying to clarify some of these issues and whenever possible, use real world examples -- sometimes this site -- to show the theory, execution and results or a highly focused performance project. Read more »
Lately I've been asked a lot about the value of adding Twitter feeds to small business websites. While the service offers amazing potential, keep in mind that as this is being written, the most followed Twitter feed in the world belongs to Ashton Kutcher. Does your business have anything in common with Ashton?
The answer to that question depends on the type of information you present, the demographics of your followers and your overall commitment to making it work. This extra effort—along with some signs suggesting that Twitter is nearing the end of its growth phase—is almost enough to recommend skipping the whole thing. But hold on: Like any other marketing program it's value is all in your hands... Read more »
Drupal Modules (www.drupalmodules.com) -- the truly useful module review site, is sponsoring a content to win tickets to the upcoming Drupalcon in San Francisco. Just visit http://drupalmodules.com/articles/drupalcon-2010-ticket-contest and enter now for your chance to win.
Taxonomy terms in Drupal are usually displayed by printing out the $terms variable in the node template. This is great in most cases, but once in awhile you'll need to isolate one or two of these terms and output them as separate individual links, rather than as part of the main list.
(Take, for example, a case where you create a vocabulary based on story authors, making each author a term. This is a really useful way to organize archival content, but you probably don't want the author's name output on the same line as the story's other tags.)
There are several solutions to this puzzle. Spend some time looking at the suggestions found here —http://drupal.org/node/133223 — to see a few of them. If you don't have time to sift through all that try the following solution, which is adapted from code on the page just referenced.
One note: You'll need to know the vocabulary ID of the term you are referencing, so use Devel to find the taxonomy vocabulary id. Then add this function to your template.php file:
function your-theme-name_taxonomy_links($node, $vid) { if (count($node->taxonomy)){ foreach ($node->taxonomy as $term) { if ($term->vid == $vid){ $thelink = l($term->name, taxonomy_term_path($term)); return $thelink; } } } }
Now, just create a new node template file (of course, this should be specific to your content type, ie node-story.tpl.php), and add the following:
<?php print your-theme-name_taxonomy_links($node, $VID); ?> //$VID is the id of the vocabulary you want....
Of course, you'll need to remove the 'terms' variable, and probably output whatever remaining terms are left in a similar fashion, but that's a quick way to do it.
Mollom is a highly effective spam filtering service that can protect almost any web form from spam with a sophisticated image and audio captcha. It's quite useful, in large because it's a centralized service that constantly monitors and learns from spam attacks, making it responsive even when spam bots change their tactics. It also provides an interesting set of results so that you can monitor the spam attacks (and defenses) employed on your website.
While the service is generally found on Drupal-based web sites–one of the principals of Mollom is Drupal's founder Dries Buytaert– it can be used on almost any other system, including Wordpress, Joomla and several others. It can even be used with generic PHP forms.
But while activating Mollom on other CMS systems is generally just a matter of installing a module or plug-in, getting it to work on a in straight PHP form is a little (but not much) more complicated. Here's how to make it work with regular PHP/HTML forms. Read more »
Once in awhile, you'll work on a Drupal problem that takes forever to figure out, then find the answer hidden in plain sight. (Sitting right there. Laughing at you.) Oh look: Here's one now. I was using the date popup widget in a module form field and wanted the fancy calendar pop up, but just needed the month, day and year, not the time, etc.
Of course, I was too sophisticated and lazy to look it up, so I struggled with it for way too long. To save anyone else some time, here's how it's done: Explicitly set the date format in PHP syntax, then assign that within the element array. Couldn't. Be. Simpler. (Take a look at http://drupal.org/node/292667 It's right there in the comments in the sample code.):
// Provide a format using regular PHP format parts (see documentation on php.net). // If you're using a date_select, the format will control the order of the date parts in the selector, // rearrange them any way you like. Parts left out of the format will not be displayed to the user. $format = 'Y-m-d H:i'; $form['date2'] = array( '#type' => 'date_select', '#title' => 'select a date', '#default_value' => $date, '#date_format' => $format ... (etc)
Read that again: Parts left out of the format will not be displayed to the user.
So, basically, all you have to do is remember to set the format. In my case, the format would just read, 'm-d-Y'. That drops the time format field.
The patch link I entered into this article was wrong or is no longer active--I've replaced it below, so if you're having trouble, try the new link instead. BTW: The error I'm describing here seems to only affect Zen themes--at least those are the only sites where I've seen this happen. I think that Zen is prone to this error because it uses so many style sheets -- not totally sure about that but, Zen is a real hassle to develop for in any case, especially when it comes to developing for IE. Now I know that a lot of people use Zen without incident, but come on--isn't it time to at least consider switching to Blueprint? I'm telling you, it's soooooo much easier.
After a recent server upgrade at Pair Networks, several Drupal sites we host there began to experience unexpected behavior – specifically the dreaded White Screen of Death.
There's a well document series of steps to follow during WSOD troubleshooting–Drupal's reference page (http://drupal.org/node/158043) tends to provide the answer in most cases. But this time, it was something entirely different. The usual suspects weren't even in the same neighborhood. (Memory: fine; htaccess: fine; Cache Tables: clear; DB: great. Modules: nothing to report.)
We were running the latest round of Drupal 6 (at the time of this writing, D6.14), but hadn't changed anything or added any new modules. One interesting clue: When CSS optimization was turned off, the sites functioned fine.
Enter the D6 common patch found at http://drupal.org/node/444228 . As it turns out some code needed for ie mac 5 was causing the problem. This code causes an error on FreeBSD 7.1-RELEASE-p4. Good God.
Anyway, this patch http://d6.drupal.org/files/issues/common.inc-56-d6.patch solved the issue on every site I've found it on. (Try this instead http://drupal.org/files/issues/common.inc-56-d6.patch ) Basically, it replaces a regex pattern that chokes Drupal during css compression. I think that this particular patch isn't perfect, because there has been some modifications in the discussion group, but it works for me. And considering that I haven't seen an IE mac 5 visit on any site I've run in the last two years, I'm just fine with it.
One of the things I like best about Drupal is that it offers a tremendous variety of modules that can take it from a relatively basic CMS to a heavyweight news publishing platform with just a few simple clicks of the mouse. I also like that there's a rather active communtity discussing and evaluating these modules, even keeping an archive of the best extensions to use in different news publishing situations.
Today provided a great example of these two traits working together. At the moment, I'm working on a fairly large magazine migration to Drupal, and was just thinking about how to achieve one of the publisher's requirements, when an email showed up saying that the Drupal Newspapers Group updated their list of recommended modules for newspapers. (The new list adds a few additional modules to the mix and removes a couple of others.)
While on its surface the list is just a set of modules, if you followed it closely, it would be an instruction manual for creating a newspaper web site. Download the modules found here and you have almost everything you need to put together your own CNN.com.
I do have a few gripes with the list: It's a little thin when it comes to multimedia and embedded content. I'm also a little bit skeptical of a few other modules. (For example, I don't recommend Search 404 for performance reasons, when you can install CustomError instead. Nik from Kineta Systems has a great post about this very topic. I think that IMCE is kind of a mess from a user interface perspective, too.)
Overall, however, it's a pretty clean list--definitely worth a look if you need to extend the functionality of core Drupal to a new publication site.
Having reviewed dozens of different shopping carts, installing at least three different systems, and even having written a complete shopping cart from scratch, I can tell you that hands down, shopping carts are the most challenging options for site engineers, managers and owners. Sure, in the grand scope of things, there are much harder things to install on a website. But just in terms of day-to-day complexity, ecommerce is the winner. From inventory control to SEO, to payment gateways and customer management, nothing else online offers as many details to manage day after day after day.
That's why the shopping cart you choose to install is so important. There are dozens of them out there, and it's amazing how functionally limited some of them are. Many have terrible user interfaces, others have gigantic learning curves. Some are easy to use, but forget about some critical detail--say, inventory control or payment gateway integration.
That's why I'm so excited that Drupal has Ubercart, a system that's awfully close to being perfect, and in my mind, the single best open-source option for anyone looking for ecommerce on their web site. Read more »
Receive new posts delivered by email.