• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 24, 2024, 08:44:25 pm

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - ryan

16
Programming of KonaKart / Re: apply fee on cod
November 23, 2013, 09:45:37 am
With a dedicated OrderTotal module.
17
Yes, in the OrderIntegrationMgr.
18
That's not possible.
20
Can't you just run KonaKart on a unix server and connect to the DB2 database on the AS400 using the driver we provide? With the relatively low price of hardware I don't understand why the customer insists on KK running on his AS400 ?
21
Quote1. How do I edit/manage the products displayed in the banners section of the main page? I'm referring to the information displayed by the BannersBody.jsp file.


In our demo we refer to jpg images included in the demo package. To manage them through the admin app you can decide how many banners you want and then create configuration variables which can be set through the admin app and read by the JSP.

Quote2. How do I edit/manage the featured products slider?


Take a look at CatalogMainPageAction.java. It's explained in there.
22
Quote1- Any fixes you have done in kk App engine we will not get benefit from it, right?


The client engine is really just a helper layer between the struts action classes (MV controller) and the server engine which is accessed through APIs. We keep an instance of it for every user in the user's session and so can save state for that user.  When a customer clicks on something to retrieve some products, the struts action class interprets the command, calls the client engine which in turn calls the server engine to get the products and caches them. The JSP then displays the cached products from the client engine. The Struts2 storefront is quite different in terms of functionality to the Struts1 storefront which is why it has a different KKAppEng. Enterprise customers now get the full source code of the KKAppEng.

Quote2- Mobile version is available from which version? And It is available only with struts2 framework or it is also available with struts1?


The Mobile App was first made available in KK 6.6.0.0 and is only available with the Struts2 verson of the storefront.
23
You can just keep your struts 1 storefront including the KK App Eng for that storefront and upgrade to the latest version of KK because the server engine APIs remain backwards compatible.
24
Installation of KonaKart / Re: Mobile version
October 07, 2013, 02:27:48 pm
It runs in a browser and so supports all mobile devices that can connect to the internet and run a browser. It makes use of the jQuery Mobile framework.
25
Installation of KonaKart / Re: Mobile version
October 07, 2013, 12:59:09 pm
The Mobile App is only available in the Enterprise version of KonaKart http://www.konakart.com/product/community-or-enterprise

The old Struts1 storefront is no longer included in the KonaKart installation packages. You can however still use it with later versions of KonaKart since the KK Engine server APIs remain backwards compatible.
26
Use updateTag() passing it the array of Tag Groups you want it to be associated with.
27
That's right. Before trying it out in the application you can play around with one of the examples we ship. Try running and editing KonaKart\java_api_examples\src\com\konakart\apiexamples\InsertOrder.java .
28
The link you gave is still accurate:

QuoteYou put the text in custom basket fields when the product is added to the basket. When an order is created, these custom fields will be copied to the OrderProduct custom fields so every line item of the order can have its own custom values.


So you just add a text entry field to the JSP where a customer can enter the text. When the T-Shirt is added to the basket you put the text in one of the basket object custom fields.  When the order is created the text will automatically be added to the corresponding OrderProduct custom field. The OrderProduct represents a line of the order containing the T-Shirt.

No need to define a product option. You should use those for colour and size.
29
Configuration of KonaKart / Re: voucher
September 06, 2013, 08:06:22 am
Have you tried setting the max usage attribute when you create the coupon ?
30
Programming of KonaKart / Re: unique coupon
September 05, 2013, 08:09:06 am
Have you tried setting the max usage attribute when you create the coupon ?