New features Please use http://kentico.uservoice.com as the primary place to submit your suggestions and allow others to vote for your ideas!
Version 6.x > New features > Create Mobile version of E-Commerce Website View modes: 
User avatar
Member
Member
prog.peter.habib-gmail - 11/13/2011 2:31:49 AM
   
Create Mobile version of E-Commerce Website
Hello,
I'd Like to make a Mobile version of Kentico E-commerce Site.How to create Shopping Cart ,Log on Page, and the required Style Sheet.Please I Need help ASAP because The Documentation doesn't contain enough description.

User avatar
Kentico Support
Kentico Support
kentico_janh - 11/14/2011 1:24:55 AM
   
RE:Create Mobile version of E-Commerce Website
Hello,

There is also a book, which describes mobile development in details. You can find there a section about CSS stylesheets and how to redirect existing pages to the mobile ones.

You can download it from HERE.

Best regards,
Jan Hermann

User avatar
Member
Member
prog.peter.habib-gmail - 11/14/2011 2:59:14 AM
   
RE:Create Mobile version of E-Commerce Website
Hello Jan,
thanks for your response,I already read this book but it doesn't contain a detailed information about E-Commerce Mobile Version.

I already know how to redirect to mobile page (using mobile redirection webpart),but i can't make a mobile version of Shopping cart webpart i.e when user clicks on 'Add To Shopping Cart' it should Redirects him to The Mobile Shopping Cart,and continue The Checkout Process to Make Order.

User avatar
Kentico Support
Kentico Support
kentico_janh - 11/15/2011 5:15:03 AM
   
RE:Create Mobile version of E-Commerce Website
Hello Peter,

It is the same approach, which you have already used for your mobile sites. You just need to create a mobile page with some repeater, which will display products and its transformation will contain the shopping cart control like this:

<%@ Register Src="~/CMSModules/Ecommerce/Controls/ProductOptions/ShoppingCartItemSelector.ascx" TagName="CartItemSelector" TagPrefix="uc1" %>

<uc1:CartItemSelector id="cartItemSelector" runat="server" ShoppingCartUrl="~/Mobile/Special-pages/Shopping-cart.aspx" SKUID='<%# ValidationHelper.GetInteger(Eval("SKUID"), 0) %>' SKUEnabled='<%# ValidationHelper.GetBoolean(Eval("SKUEnabled"), false) %> ' AddToCartImageButton="addtocart.gif" AddToCartLinkText="Add to shopping cart" ShowProductOptions="true" ShowUnitsTextBox="true"/>

And as you can see in the control above, you need to also create some shopping cart page, into which you place the Shopping cart webpart, which will be able to handle the check-out process.

Best regards,
Jan Hermann