• Welcome to KonaKart Community Forum. Please login or sign up.
 
March 09, 2026, 12:20:51 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

256
Hi,

For a product with an array of options, can't you just add the option value to the product price ?
257
Configuration of KonaKart / Re: KKIMPORT problem
December 20, 2007, 02:33:30 pm
Hi,

Also can you do quick test by escaping the & character in your description ?
258
Configuration of KonaKart / Re: KKIMPORT problem
December 20, 2007, 02:27:48 pm
Hi,

Can you attach the actual file that we can try ? Otherwise we have to recreate it with the tab delimiters etc.
259
Programming of KonaKart / Re: Limitations
December 20, 2007, 02:01:51 pm
Hi,

Please send an email to support at konakart dot com .

-Ryan
260
Configuration of KonaKart / Re: KKIMPORT problem
December 20, 2007, 01:10:43 pm
Hi,

Can you edit the export file so that it only contains the header line and one record that fails and then post that to the forum ?
261
Programming of KonaKart / Re: Wrong bread crumps
December 20, 2007, 08:36:51 am
Oh crumbs  :)

This one is a bit tricky to fix because we keep the breadcrumbs of the last state which was the product details state. By using the back button, the state doesn't actually change since it doesn't perform the action. Then when you do a sort it also doesn't change the state and so automatically uses the last one which is the product details state. By the way, if you want to experiment yourself and modify the breadcrumbs for the sort, you can do it by editing SortProductAction.java.
262
Hi Burz,

We do have javascript field validation which turns the fields a different color if they don't validate. The validation is normally based on minimum / maximum lengths and whether fields are compulsory or not. The styles we choose are as follows:

.konakart-TextBox {
   background-color: white;
}

Chosen when the field validates....

.konakart-TextBox-Invalid {
   background-color: #ffb3b5;
}

chosen when the field doesn't validate....

By modifying these two styles, hopefully you should be able to achieve your desired effect.

-Ryan
263
Configuration of KonaKart / Re: Promotions
December 14, 2007, 06:16:37 pm
Hi,

Sorry, I wasn't very clear. I meant the database table called configuration. You can run this :

SELECT configuration_value FROM configuration where configuration_key = 'MODULE_ORDER_TOTAL_INSTALLED';

This should get set by the Admin App when you install the module. It writes the module name into it. So if you don't see the module name then it means that for some reason the discount module hasn't been installed.
264
Configuration of KonaKart / Re: Promotions
December 14, 2007, 03:17:16 pm
Here's a screen shot of the OrderTotalModules . Check that the variable with key MODULE_ORDER_TOTAL_INSTALLED in the configuration table has the names of the discount order total modules in it (i.e. ProductDiscount;TotalDiscount;ot_shipping.php;ot_subtotal.php;ot_tax.php;ot_total.php )
265
Configuration of KonaKart / Re: Promotions
December 14, 2007, 01:18:31 pm
I've attached a screen shot of how the promotion is set up in our demo. Our demo uses a coupon which is why the requires coupon check box is checked. You can ignore that if you don't use a coupon.
266
Configuration of KonaKart / Re: Promotions
December 14, 2007, 09:34:30 am
Hi Steve,

Could this be your problem?

The promotion types available in the drop list are defined in the Modules>>Order Total section of the Admin App. New types may be added by adding new modules to KonaKart. Note that the promotion will not become active until the relevent OrderTotal module has been installed.

-Ryan
267
Hi David,

From the exception trace it's not completely obvious. Maybe you can do a toString() on the order and send that to us. Also a toString() on the OrderProducts would be handy.

One thing to bear in mind is that in the current version we increased the size of the model field in the orders_products table to make it match the size in the products table.

ALTER TABLE orders_products MODIFY products_model VARCHAR(64);

Good luck.
268
Hi,

Not at the moment. We are currently developing one for UPS which should provide a good framework for then developing USPS, FedEx and others.
269
Quote
Sorry I can't understand the product option/ individual stock stuff though


You need to click on the "Quantities" tab once you have set up attributes for the product. Here is the online help for that tab:

This screen is used when you need to assign different quantities to a product based on its attributes. For example if you have a shirt that comes in various colors and sizes, you will probably want to know how many you have in stock for the various color / size combinations.

If the product has no attributes, then this screen has no purpose. If the product does have attributes, you can set the quantity in stock and SKU for each combination by using the quantity and SKU fields on each row of the table. If any of the rows is set to a number other than zero, then the product quantity attribute (in the details tab) is ignored. If all rows are set to zero, then the value in the product quantity attribute is used. Therefore, in order to guarantee accurate results, the product quantity attribute should be set to zero when you intend using this feature.

When inserting a product this screen will be empty because it can only display data based on product attributes that do not yet exist. You must save the product, click the Back button and then edit the product in order to insert SKU / quantity data.
270
Quote
As far as I can see the stock level is based on the product so its a useless feature.

If you take a look at the product details ( http://www.konakart.com/productdetails.php ) and / or try editing a product using the Admin App you'll see that this isn't the case. Each color can have a separate quantity and SKU.

Quote
The addition of new products would be much aided by a "copy existing product" button.

Once you are in "insert mode" every time you click save it will insert a new product. Therefore just change the things you need to change and then click save again. There is also an import feature which could be useful for you.