Skip to main content

Posts

The importance of professional photography in e-commerce

The following is an excerpt from my conversation with Cathy Salamone of Direct Digital Photography . The use of imagery on any e-commerce web site can have far-reaching consequences. Read what the expert has to say about the subject. How long have you been doing professional photography? - Our Studio Opened in 1980 back then we went by the name "Studio A"- Since hen we have been providing photographic images for Advertising and Industry. How did you get into digital photography? - In 1994 we were approached by a cutting edge printing house offering ua partnership in their newest adventure "Digital Photography". We moved to their facility, changed our name tp "Direct Digital Photography" and entered into a brave new world. Back then no one had ever heard of digital photography-so it was a difficult sale. There were many challenges and being on he cutting edge was a bloody place but we paved the road and got an education about he new technology that very ...

Simple trick to speed up your Yahoo! Store pages

If your store uses images or other files stored in the "Files" library, there is an easy trick to improve the response time of those files - and make your pages load faster. Typically you reference files from the library using this relative URL: /lib/yourstoreid/filename where you replace yourstoreid with the Yahoo account ID of your store. This is generally fine, because the Store is smart enough to expand this to the actual location of the file, which is at http://lib.store.yahoo.net/lib/yourstoreid/filename What I often see in stores is that the store operator enters things like this: http://www.yourdomainname.com/lib/yourstoreid/filename or http://lib.store.yahoo .com /lib/yourstoreid/filename What's wrong with that? Well, Yahoo! Store is still smart enough to find the correct file for you, but it doesn't come cheap. What happens is that the Yahoo! Store server does a redirect on these URLs so that they reference the file correctly from the lib.store.yahoo.net se...

Catalog Request

You may have noticed that both the Catalog Request and Catalog Request Confirmation pages are now customizable through Checkout Manager. If you have already customized your Checkout Manager pages (or had someone customize them for you), and would like to have the same custom look applied to your Catalog Request and Catalog Request Confirmation forms, all you have to do is this: Go into Checkout Manager, click Page Configuration and then look at how your Shipping, Billing, Review, etc. pages are set up; in particular, check if you have the Top Navigation and Left Navigation enabled. Click over to the Catalog Request tab, and make sure you have the same settings next to Top Navigation and Left Navigation. Don't forget to hit Save or Save & Preview , otherwise your changes will be lost. Click over to the Catalog Request Confirmation tab and there too, make sure you have the same settings next to Top Navigation and Left Navigation (so if those are enabled on your other checkout p...

Yahoo! Cross-sell bug

In a recent release, Yahoo! made it possible to show cross-sells right on the product pages. Coupled with their auto-suggest feature (where products are automatically recommended based on past shopping history) this is a great conversion feature. There is, however, a minor bug in the way these on-page cross-sells are implemented. Here is the scoop: As you may know, you can add the yahoo-generated cross-sells to your item pages by inserting <div id="ys_relatedItems"></div> anywhere in your pages' text or template. The bug occurs - in Internet Explorer only - if this ys_relatedItems div is the last child of its parent. In that case, and again, only in Internet Explorer, no cross-sell items will show up on the page. In layman's terms, this means that if you have a closing tag after <div id="ys_relatedItems</div>, then this bug will cause your cross-sells not to show. So, for example, if you have a table and inside it the last element is your ys_...

Choosing your image type is now possible

With a recent feature release, Yahoo! Store finally gave us the option to choose the format in which images are generated on the template-based store editor pages. Previously, unless you displayed an image unaltered (meaning in its original size, and without manipulating it with the RENDER or FUSE operator), the Yahoo! Store editor converted images into GIFs no matter what. What is wrong with that? Well, the GIF format, while small in file size, is best for graphics or clip art, and not for photographic images. The reason lies with the fact that GIF can only display up to 256 colors. With the new release, we can now choose among GIF, JPEG, or PNG. JPEG is generally better for photos, but JPEG uses what is called a "lossy" compression - meaning that in order to reduce file size, the image is compressed by merging like pixels thereby reducing the image quality to varying degrees. PNG is a relatively new format and is generally far superior to both GIF and JPEG. PNG uses "l...

Checkout Manager Problem and temporary solution

If you are using checkout manager, I'm sure you are aware of today's service interruption at Yahoo! Store. Basically, stores that are using the new Checkout Manager have a major capacity issue where customers either have long waits during checkout, or experience timeouts, error messages or other interruptions. While Yahoo's engineers have been working all day to fix the problem, here is a quick temporary solution you can probably apply to your store, if your store is affected: Log into your Store Manager Click on "Checkout Manager" Click on "Disable Checkout Manager". Read the warning and disable it anyway. Back in the "Store Manager", click "Publish" under "Order Settings". Go to the store editor, hit "Variables", click "Update" and publish the store. At this point, your store's checkout will be reverted to the "old" checkout, which still works fine. A couple of notes: If you...

How to create clean and efficient CSS

In a typical workday, I deal with dozens of yahoo stores and very often I have to tweak, fix, or change CSS used by these stores. While some stores have very clean and easy to follow style sheets or CSS definitions, the vast majority of stores I've seen seem to include complete hack jobs, style sheets put together completely haphazardly, or as an afterthought. While working in such a store, the idea came to me to turn my gripes into a post. So the following is my list of dos and don'ts of good CSS or style design. 1. Externalize your style sheets. This means to save your style sheets into one or more css files, and link to them using the <link rel="stylesheet" type="text/css" href="/lib/yourstoreid/yourstyle.css"> notation, or in Editor V3.0, you can use the LINK operator. 2. Combine your style sheets into as few files as possible. Nothing worse than trying to wade through 6, 8, 10 or more different style sheets to find the color of a l...