• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 05, 2024, 12:06:09 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.

Topics - virtueed

1
Hi,
I would like to have multiple AddToCartForm on the same page to let the customer add products to the cart from special offers pages. I've tried with the standard AddToCartForm but it messes up all the options value, I think because every form has the same name. Do you have any suggestion on the best way to do this. Just for information the number of products in those pages will be dynamic.

Thank you and best regards,
Mirko.
2
Hi,
I'm getting a problem while trying to get the Manufacturer object of a product. Here is the code that I'm using:
Quote
KKEngIf engine = kkEng.getEng();
prod = engine.getProduct(kkEng.getSessionId(), prodId1, kkEng.getLangId());
ManufacturerIf manu1 = prod.getManufacturer();


Manu1 is null (no matter which is the product)!!! But if I use this code:

Quote
int manuId1 = prod.getManufacturerId();

I get a regular id value, corresponding to the right manufacturer.

The code is inserted in a jsp (is not an action). Can you please help me? I'm sure I'm doing something stupid but I cannot get rid of this problem myself.

thank you and best regards,
Mirko.
3
Programming of KonaKart / kkimport problem
November 06, 2007, 05:44:14 pm
Hi,
first of all let me say that konakart is really Great! I'm using it for a new eshop in Italy (not yet online) and it is working perfectly.

I've just started to do some test to import product using kkimporter but I get this error:
QuoteERROR (?:doImport:?) The attribute v_products_name_1 must have a minimum length of 1. The value we have found = null. The offending line is :


Now, the error is clear but actually I don't have the v_products_name_1 field because I've added Italian as the 4th language and I've disabled the other 3 languages (en, de, es).
The file that I'm using to import product has been generated form the kkexport engine, in which after the field "v_products_image4" I have directly "v_products_name_4". Here is an example form the header row:
Quotev_products_image v_products_image2 v_products_image3 v_products_image4 v_products_name_4 v_products_description_4


Should I insert in the header row v_products_name_1 and v_products_name_2 and v_products_name_3 and insert fake values? Is there any configuration parameter to work on to solve the problem?

Thank you for you answers.

Regards.