• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 26, 2024, 01:38:56 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 - Vladimir

1
Some entries with errors:

error.passwordEmpty                   = The passsword cannot be left empty

msg.ProdManyAssocManufactRemove  = There are {0} products associated with the manufacturer {0}.  Click the checkbox to remove these products as well as the manufacturer.
2
Miscellaneous / BUGS: LowStockAlert_ru.vm, KK v 4.1.0.0
December 23, 2009, 04:30:31 am
when i change first line in template from English "Low stock level alert !" to Cyrillic "Товар на складе заканчивается!", the subject field of received mail message losted Cyrillic symbols and looks like "!" or "? !" instead of excpected "Товар на складе заканчивается!".

in other messages Cyrillic symbols in subject field transmitted correctly
3
Contributions / Russian translation
December 20, 2009, 07:11:35 am
For now, tehere is Messages_ru.properties. Later, as the translation, i'll add to this topic more russian language resources
4
This modification make choice in product option combobox, bases on option (concrete product attribute) with Price=0.
This makes it possible to display the default configuration and price of the product, which has attributes.
In ProductDetailsBody.jsp replace the:

<td >
<html:select name="AddToCartForm" property='<%= "valueId["+i+"]"%>' >

with:

<td >
<% int selectedId = 0;
for (ProdOption option : ((ProdOptionContainer) optContainer).getOptValues()) {
    if (0 == option.getPriceExTax().intValue()) {
          selectedId = option.getId();
}
}%>
<html:select name="AddToCartForm" property='<%= "valueId["+i+"]"%>' value='<%=""+selectedId%>'>



PS its dirty, but its friday evening here, in Kazakhstan, and I'm already tired...
5
Miscellaneous / Displaying multiple images, 4.1.0.0
December 11, 2009, 04:47:22 am
In the Admin App it is possible to add multiple images to the Product, but in the frontend showing only one image. This modified page show up to 4 images, is if they are present:
6
Miscellaneous / BUGS: HomePageBody.jsp, KK v 4.1.0.0
October 14, 2009, 11:39:10 am
Little bug: i think, that following lines in HomePageBody.jsp:

        <img src="images/table_background_default.gif" border="0" alt="home.page.body.welcome"
             title=" home.page.body.welcome " width="<%=kkEng.getHeadingImageWidth()%>"
             height="<%=kkEng.getHeadingImageHeight()%>">

must be a:
        <img src="images/table_background_default.gif" border="0" alt="<bean:message key="home.page.body.welcome"/>"
             title=" <bean:message key="home.page.body.welcome"/> " width="<%=kkEng.getHeadingImageWidth()%>"
             height="<%=kkEng.getHeadingImageHeight()%>">
7
Miscellaneous / Ant 1.7 compile problem
October 14, 2009, 11:21:29 am
I use 1.7.1 version of Ant for buid KK, and faced with "javac.exe CreateProcess error=87" error while execute compile task. Problem solved by changing property fork="yes" to fork="false" of this task.

PS Also let more memory to your Ant for succeful compile