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

Topics - pawlorj

1
What kind of encryption is used in the setCreditCardDetailsOnOrder method?   Is the encryption/decryption key based?  If so, is the value of the key configurable or hard coded?  Is storing credit card info with setCreditCardDetailsOnOrder PCI compliant?

Thanks,

Bob
2
If you check out without an account, you will be taken to a page that asks for delivery information.  The problem is that after typing in the state/province, and then selecting "United States" as the country, the state province gets overwritten as "Alabama".  I went to fix this problem in the HTML code and found that the form wasn't readily accessible in OnePageCheckoutBody.jsp.  The following tag is empty:

<div id="kk-OnePageCheckout"></div>

When it is rendered in a browser, the address entry form gets inserted in the tag above.  What is inserting this HTML?  It looks like GWT is being used? How do I alter the code to change the order of the fields and fix the country / state bug?  Note that entering an address during user signup does not have this problem.

Thanks,

Bob
3
Hello,

I am using "Enables Checkout Without Registration".   When a returning customer clicks "My Account"  He gets the login screen with the following message:

"I am a returning customer. If you have already shopped at our store but never registered, please click on the Password Forgotten link below and we'll send you a password."

When the customer requests a new password, he gets the following message, even though he is in the system (viewed through konakart admin app) and has previously completed an order:

"The E-Mail Address was not found in our records, please try again"

The customer has no way of registering.  Is there a workaround for this?   It seems that the code that sends the email is not open source:

            kkAppEng.getCustomerMgr().sendNewPassword(localForm.getEmailAddr());

Thanks,

Bob
4
Hello,

I'm trying to send an email with a velocity template through the
Customer Communications screen.  Is it documented anywhere what
variables are available for use?  For example, I'm able to use $cust,
but $storeName does not get translated.  $storeName works for the
welcome email sent from the konakart app, but it does not work from the
konakart admin app.  Also, how do I get the text in "Text to merge with
template" to get merged into the email?   I tried using $message, but it
doesn't work.  Here is an excerpt from my velocity template:

message: $message
storeOwner: $storeOwner;
storeName: $storeName
storeOwnerEmailAddr: $storeOwnerEmailAddr


None of these fields get mapped properly, but

Dear $cust.getFirstName() $cust.getLastName() ,

gets mapped fine.

Thanks,

Bob