Skip to main content

Posts

How to make the most engaging Digital Product Catalog for Retail

Design your Digital Product Catalog Station that is really useful for you customers. Photo by Boxed Water Is Better on Unsplash This article is a follow up to the intro to Digital Product Catalogs in Retail . On many occasions I see “Interactive screens” in shops that are just sitting there in a corner. Or placed in a non-favorable spot, being underused. Other times they just contain redundant information, not useful functionality, or it adds no value to the shopper, or the sales staff. This installations have obviously cost some money to the shop owner, and it is a pity to see it gone to waste, and becoming obsolete without giving the service they are supposed to. So let show some love to “Digital Product Catalogs”. Q: So how can I make the shoppers engage more with my “Digital Installation”? A: State clearly what they are there for. The very first thing of all is, we need to have a clear idea of why we would like our customers to interact with our “Digital Systems”. The...

Digital Product Catalogs in Retail Shops

Photo by  Blake Wisz  on  Unsplash As digital screens have become inexpensive recently, more retailers and Brands are adding an interactive digital catalog as marketing and sales platform. The time is now, shoppers are already used to the technology, and they navigate easily through all the pages presented on the screen. What can Digital Product Catalogs do for your customers As most products come neatly packed in boxes, and the packaging has limited space for balancing design and information, a Digital Product Catalog is ideal to add on spot official product information for your shoppers. Think of it as Augmented Information and sales Pitch, which make product catalogs very convenient for shoppers. All the information, and client education, that we want,  and that, for whatever reason is not possible to include directly with the product: Variations, colors, sizes Technical Specs Example use cases Compatible and related products Special offers linked to thi...

Mortgage simulator app in Javascript

Input text in Javascript

HTML input tag Get Input value Concat strings We are displaying an input box for the user to input their name. When clicking a button we display the name in a HTML element. Sample: http://javascript.kennyming.com/code/3-input-text-javascript/ Code: https://github.com/kennymingt/javascript/tree/master/code/3-input-text-javascript

Using Buttons in JavaScript

Console message for debug Constants Add Events listeners to DOM Elements functions We are going to display a message when we click a button. We have two elements with Id in the HTML, the button and a div to display a message. In our JavaScript file we grab a reference to elements in the HTML. We add a function to the Click event of the button. Sample: http://javascript.kennyming.com/code/2-buttons-in-javascript/ Code: https://github.com/kennymingt/javascript/tree/master/code/2-buttons-in-javascript