5 Design Tips for a Successful Black Friday Campaign

It’s that time of the year again and Black Friday is upon us. The sales are everywhere; there’s something new everywhere; deals here and deals there; but what makes customers buy off of one website over the other? We’ve gathered our fair share of easy tips to help your e-commerce platform maintain a successful Black Friday campaign.

Stay true to the brand
Avoid visual clutter by using simple designed ad banners with clear call to action. The designs should stick to the brand identity which makes the user related more to the website.

1

2

Help your users get to what they want
Listing all products in the sale next to each other is overwhelming. Use categories to help the users navigate to the right section of the website, as well providing filters to narrow down the range of products displayed.

After clicking on the black friday banner, the page displayed include products featured as deals of the day, hottest deals and a list of categories which have deals.
After clicking on the Black Friday banner, the page displayed include products featured as deals of the day, hottest deals and a list of categories which have deals.

Make your discount percentages pop
Offers and discounts are great driver for the shoppers to take the decision to purchase a product (link). Discounts are the core of Black Friday campaign. Featuring those discounts visually and in percentage has a great impact on the experience.

45

Tell the users the what they will really pay before they click “checkout”
61% of users abandon their cart and the checkout process when they realize that extra fees are too high. Deceiving the users by using a website wide banners promoting free shipping which isn’t the case when they proceed to the actual checkout, leaves a bad impression.

Macy’s promotes free shipping in the header and in the product page but when the user tries to checkout, they add shipping fees anyways.
Macy’s promotes free shipping in the header and in the product page but when the user tries to checkout, they add shipping fees anyways.

Get to know your users better
Black Friday is a great opportunity to observe your users behaviour and their shopping patterns through analytics and usability studies. Note down what negatively affects the experience, handle it and iterate. Read more into how to do a low budget usability analysis of an e-commerce website.

These are just simple design tips that you just can’t overlook; however, an awesome and successful Black Friday campaign (or any sale for the matter) doesn’t only stop at these, without proper marketing, a secure website that actually works, great effort exerted by your customer support team and the right partners to get your goods to the customer, you don’t stand a chance in this highly dynamic season.

Introduction to RequireJS (Part 1)

RequireJS defines itself as a file and module loader. The first part is easy to understand; it can be used to load files but what about loading a module? What are modules anyway? Modules are containers encapsulating a piece of code that performs a particular function. A module should also have an interface that lets you access its functionality in a uniform manner.

Why should you care about modules?

Splitting an application into a group of modules is similar to dividing a book into chapters and sections. It makes it easier to read and find the parts you need. Writing modules at the beginning might seem like a lot of work and sometimes developers get confused and ask themselves “Do I really need to do this?” When your application grows, you start to appreciate the time you invested in decoupling your code and writing reusable modules that interact with each other.

What are the benefits of using modules?

Perhaps the greatest benefit of using modules is code reusability. Modules can be imported anywhere in an application to perform its task whenever it is needed without having to worry about duplicating the code. It also becomes easier to export a module to be able to use it in a different project because it is encapsulated. Generally speaking, it facilitates maintenance and readability of the code as well as making it more manageable and easier to test.

How I entered the world of modules loading

From my experience, I used to include all my scripts each in a separate script tag. It doesn’t matter how many scripts I am loading; they will be executed in the same order they are written. There isn’t any abstraction or anything that will add complexity, so why would I need a library to do what I can already do? My build process was taken care of concatenating and uglifying my files so what’s the problem with loading a single nice file?

I wasn’t convinced until I read a couple of discussions and a few questions began to arise in my mind especially when projects I work grew larger as follows:

  • Most of the plugins and the codes I write aren’t required to run on every page. Why would I load something huge like a WYSIWYG editor on a dashboard while the user won’t really need it at the moment?
  • Most of the time, it was difficult to debug something without checking many files to find where exactly is that function defined.

I decided to give RequireJS a try. To be honest, I fell in love with the sense of power it gave me with the conditional loading of the scripts I define. Errors became much easier to debug. I no longer have to care about the loading order of my scripts–things just work out themselves magically. I got rid of the serving-one-fat-file anti-pattern with the rise of HTTP/2. What I do now is ship small files that can be transferred in parallel. Focusing on splitting my code into modules helped me improve the work.

I started to see things from another perspective and, after using it for a while, I really had a hard time imagining developing anything without it. We will explore how to start using RequireJS in the upcoming article. See you soon!