• Welcome to KonaKart Community Forum. Please login or sign up.
 
November 15, 2025, 11:40:31 am

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 - trevor

91
I "think" that using the APIs you should be able to use whatever relation types you want, although I'd keep high (100+) so as to avoid any future upgrade problems.
92
That's just because it expects some search text. In order for it not to require any search text you can make the following change in the action class:


           if (spf.getSearchText() != null && spf.getSearchText().length() > 0)
            {
                ps.setSearchText(spf.getSearchText());
            }
93
No idea. The admin app uses the APIs so you should be able to do whatever the admin app can do, using any flavor of our APIs (POJO, SOAP or RMI).
94
Just loop through the order products of the order. These all contain the id of the product.
95
No. It's a standard JSP / Struts / Tiles application so you really have to be familiar with those technologies and then it's relatively easy.
96
You need to use the API call used when doing an advanced search. Take a look at AdvancedSearchSubmitAction.java. Here you can add price filters.
97
Do you get any clues under the konakart\logs directory ?
98
If the customer remains logged in, then it is correct that the communication is SSL. You must log the customer out to revert to a non encrypted connection.
99
The Enterprise Version of KonaKart supports multi-store: http://www.konakart.com/docs/multiStoreAdministration.html
100
What you need to do is to subtract your discount from the total of the order:

order.setTotalIncTax(order.getTotalIncTax().subtract(selectedOT.getValue()));
101
My advice is to educate yourself on the architecture of a Struts based application http://struts.apache.org/
103
We provide all of the JSPs for the store-front application so you are free to edit them as you wish. Since all of the KK functionality is accessed through APIs which remain backwards compatible, your changes should be future proof  ;)
105
Isn't the difference in price just due to the shipping cost being different, and so depends on the shipping rules within the shipping module you're using?