User Feedback Archive : November 2016

Posted by Lumen
2016-11-30

Hi Tom first off; great script, Thank you!

I was wondering if it would be possible to add characteristics to the button and if so how to go about this.

I'm selling vouchers for advantures that ... Read More
Posted by Alex
2016-11-28

What's up?
First, thanks for the system. He is really helping me!
I need to manage users access permissions. How can i create or change a group/user permission to make them with no write/alteration ... Read More
Posted by Tom
2016-11-28

Hi,

>I need to manage users access permissions. How can i create or change a group/user permission to make them with no write/alteration

Sorry, there aren't any built-in features for group ... Read More
Posted by Pär
2016-11-28

Worked like a charm. Thanks!
One small problem occurred. If I present a field as a text, it works fine, IF the the data is correct. If the database dont have any value on that field, the server ... Read More
Posted by Tom
2016-11-28

Then try this helper function instead.
<?php function getTextValue( $key, $val ){ return isset($val->attri['value']) ? $val->attri['value'] : ""; } ?>
It takes care of the case that there is no ... Read More
Posted by Pär
2016-11-25

style='display:none;' will remove the whole row, that's for sure.
What I would like to have is The filed name followed with its value, where the name and value should be visible, but not editable. ... Read More
Posted by Tom
2016-11-25

You can display the value of a field with this helper function
Open web/staff/common.inc.php in a text editor, and put the following line on the top, then the function will be available anywhere ... Read More
Posted by Pär
2016-11-23

Hi
Is it possible to make some of the fields locked and just presented as a plain text? There is some of the data I don't want to mess with. So when editing a client record, there should only be text ... Read More
Posted by Tom
2016-11-24

Hi, the easiest way is just hide the entire row with style='display:none;'.
For example,
... Read More
Posted by Jerry Higgins
2016-11-10

Tom... wonderful script and it works flawlessly. Thanks so much!

Was just wondering if IPN settings on PayPal's website should be turned on (enabled)?
Posted by Tom
2016-11-11

>if IPN settings on PayPal's website should be turned on (enabled)?

Yes, it should be enabled.
Posted by George
2016-11-07

Thanks for your prompt reply.
We want to make a registration form in a database with information not the user is typing and will not appear on the form.
The automatic information will be presented by ... Read More
Posted by Tom
2016-11-08

>The automatic information will be presented by different articles we have on our website example

OK then don't bother the form. You are making things more difficult.
You should write a script that ... Read More
Posted by George
2016-11-06

Hello Tom,
how to replace
<?php echo $hm->Zb('rs:def:f0008'); ?>
with:
<input type='text' name='f0008' value='<?php echo date("j/m/Y - G:i"); ?>' readonly/>

and

<?php echo $hm->Zb('rs:def:f0009'); ... Read More
Posted by Tom
2016-11-07

> <input type='text' name='f0008' value='<?php echo date("j/m/Y - G:i"); ?>' readonly/>

I think you want to display data in a different format?
If so, please read this article ... Read More
Posted by ashwinkumar
2016-11-05

is there any possibility to merge the records by company name...for example, i have companies a,b,c and there are several contacts like 123 in company a, 4,5,6 in company b and 7,8,9 in company c. ... Read More
Posted by Tom
2016-11-05

>is there any possibility to merge the records by company name

No because it requires two tables. But you can always search records by company name.
Posted by xok
2016-11-04

Hi again
After the criterion of the research,,for example i have 10 rows....on those 10 rows there is a field of a,b,c
i need to sum all the rows of A list to a new field below...or in a different ... Read More
Posted by Tom
2016-11-05

>for example i have 10 rows....on those 10 rows there is a field of a,b,c
i need to sum all the rows of A list to a new field below...or in a different ..

Oh, that's what you mean...Then no, you ... Read More
Posted by xok
2016-11-02

Hello,
It is possible to Calculate, from field A & field B as a Percentage to field C ?
or
It is possible to Calculate total ,after Search Criteria as field A .
Posted by Tom
2016-11-03

Yes, it's possible. Open the templateweb/staff/tpl.(table-name).search.inc.php and find the fields you want to calculate. e.g.
  
<?php echo $hm->Zb('rs:def:my-field-name'); ?>

You can use the ... Read More
Posted by ashwinkumar
2016-11-01

Dear Tom, I am using the script with combination of followup script. To my recent surprise the "Last modified at" is not matching the system / server time due to which there is a delay of 5.30 hrs to ... Read More
Posted by Tom
2016-11-01

>the "Last modified at" is not matching the system / server time due to which there is a delay of 5.30 hrs

You can adjust your time zone by the date_default_timezone_set function. For example,
... Read More