• Welcome to KonaKart Community Forum. Please login or sign up.
 

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

16
Thank you Julie! That's a great info and i will check it out!
I was busy so could't reply earlier...

Thanks again!
17
Thank you for the quick reply Julie!
I am using KK community addition so i don't have source code of AdminOrderIntegrationMgr. Can i call  OrderIntegrationMgr's changeOrderStatus() instead and change database from there?

Thanks again.
18
Hi!
I have added custom values in order_products's custom1,custom2 fields at the time of order placement. Now i want to update those fields on some events. How would i do that?

OrderUpdateIf updateOrder = new OrderUpdate();
updateOrder.setUpdatedById(order.getCustomerId());
order.setCustom1("XYZ");
kkEng.getOrderMgr().saveOrder(false, null);

doesn't seems to work to update even order tables's custom fields.

Thanks a lot.
19
Julie, Thanks a lot for the help. But i'm still getting product description null. This is what i am doing in "NewProductsBody.jsp"-->

com.konakart.al.KKAppEng kkEng = (com.konakart.al.KKAppEng) session.getAttribute("konakartKey");
com.konakart.al.ProductMgr prodMgr = kkEng.getProductMgr();
ProductSearch prodSearch = new ProductSearch();
prodSearch.setFillDescription(true);
prodMgr.setProdSearch(prodSearch);

<kk:carousel prods="<%=prodMgr.getNewProducts()%>" title="<%=title%>" width="180" widthSmall="140" breakpointSmall="440"/>

Where am i doing wrong?

Thanks a lot in advance.
20
Thank you very much for the reply.

I am directly changing the Messages.properties file located in my eclipse project's classes directory...This is the file location --> kkeclipse/WebContent/WEB-INF/classes/Messages.properties

I restart the server and refresh the browser but no changes reflect.

From where shall i "Move new Messages file into classes directory"? Which Messages file should i change and move to classes dir of my kkeclipse project?

Thanks in advance!

21
Hi Guys!,
I wanted to show product description on the home page's New Arrivals and Featured Products so i made a little change in ProdTileTag.java and added a div for product description below price div. But when i call prod.getDescription() it returns null value. Product description is visible on product detail page it means description is available for the product.

Test: I tested with prod.getManufacturerName() and it works fine; i get manufacturer name string. I tested with a custom value too and it's working fine.

What is the thing am i missing? or is it a bug?


Warm Regards.
22
I made an eclipse project from make_eclipse_project ant target. My default local is en_GB.
When i add or change new property in Messages.properties file e.g. mycourses.products.body.title=xyz the store front shoes the key(mycourses.products.body.title) not the value(xyz).  The same way if i change a property new.products.body.title=Very New Arrivals; it does not reflect on store front. I have restarted the server but no effect.

I also created new Messages_gb.properties file but of no use. konakart doesn't detect the changes.

Please help!