You are not logged in.
The software looks good, but I need to know if:
1. I use multiple languages for the site, can the visitor choose a language? Or must I set only one language to display on my side?
2. I see it's PayPal ready, but if I use a different payment gateway can it easily be directed to another source for payments? And how?
3. What template system is used?
Offline
Hello,
thank you for your interest.
1. The owner can set the default language. Although every user can choose a own preferred language. The problem might be although that currently we support only one language for email notifications.
2. For the moment only Paypal is supported. The integration with other payment systems is a top priority and it is under development now.
3. We use the PHP itself as the template system - the template files are the mix of HTML with some PHP statements.
Offline
Thanks for the quick reply.
So for emails, php is used, and can the encoding easily be set?
And for templates, I guess what I was asking you answered. The layout is structured in the php file and CSS is used, right? So to change the actual layout would mean moving a lot of php around and not using HTML itself? Does that make sense?
Offline
Hello,
with emails encoding we are just investigating an issue, there have been some problems with some national characters, anyway it will be resolved soon.
As for the layout is just simple HTML with PHP code parts, actually here is the main template file content:
<DIV ID="ha">
<DIV ID="userInfo">
<DIV ID="currentTime">
<? hcDisplayFunctions::currentTime(); ?>
</DIV>
<DIV ID="links">
<? hcDisplayFunctions::personalMenu(); ?>
</DIV>
</DIV>
<DIV ID="menu">
<? hcDisplayFunctions::actionsMenu(); ?>
</DIV>
<DIV ID="content">
<H2><? hcDisplayFunctions::pageTitle(); ?></H2>
<? hcDisplayFunctions::main(); ?>
</DIV>
</DIV>as you see, to change the layout no any PHP code interaction required. Even more, it is all can be changed with CSS only.
Offline