• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 28, 2024, 08:10:47 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 - pete

16
Each payment module has it's own properties file. This one will be in konakart_payment_cod.jar.
17
Miscellaneous / Re: image files in psd format
November 03, 2008, 08:00:21 am
In our application we use the standard osCommerce button set. If you do a Gooogle search for "oscommmerce buttons" you will find many web sites that will supply the osCommerce button set in a psd format. The web site http://oscommerce.buttonsworkshop.com/ allows you to choose from some more modern templates.
18
Programming of KonaKart / Re: payment module selection
October 27, 2008, 10:19:17 pm
You can use a custom field of the Payment details object to filter the payment modules for a customer group.
19
What method are you calling and what parameters are you passing ?

Does your code work with the direct engine ?
21
Yes, we are aware of this "feature". It has been fixed for the next release.
22
Hi,

The SEO data is appended to the URL in the action classes. This data isn't required by KonaKart and is only added to make your products more visible to search engines.

For example in ShowProductDetailsAction.java there is a section near the bottom that does it. What you could do is to either:


  • Leave seo.product, seo.product.manufacturer, seo.product.name and seo.product.model empty in the messages.properties file so that this data doesn't get appended to the URL.

  • Modify the code to URL Encode the names that are added. i.e. change code such as url.append(cat.getName());
    to url.append(URLEncoder.encode(cat.getName(), "UTF-8"));

23
Version 2.2.6 formats the prices displayed in the admin app with respect to the currency. Therefore if the currency is defined to have two decimal places it only displays two decimal places. If you enter an attribute value of greater than two decimal places, it will get saved but will be rounded to two decimal places when displayed.
24
Programming of KonaKart / Re: New payment module
September 30, 2008, 10:19:59 pm
Hi Rene,

Could you try again please ? I've increased the maximum size to 512 kb.
25
I'm afraid that for this shipping module you have to enter the other countries using a database script. As you can see from the source code and from the DB, the configuration variables are called MODULE_SHIPPING_ZONES_COUNTRIES_X , MODULE_SHIPPING_ZONES_COST_X, MODULE_SHIPPING_ZONES_HANDLING_X where X is an incrementing number. The admin app inserts _1 and so you must insert _2, _3 etc.
26
Take a look at the Zones shipping module that is included in the download package.
29
Hi,

I don't see any attacment to your post  ???
30
Configuration of KonaKart / Re: coupon code not working
September 08, 2008, 05:02:44 pm
For anyone following this thread, a bug was found in the PayPal payment module which stopped it from processing discounts created by promotion modules.

I've fixed the problem and attached a new source file and class file. You only need to update if you are using the PayPal payment module and also plan to use promotions. The module has been tested with KonaKart 2.2.6.0 although it should also work with older versions.