User Feedback Archive : May 2017

Posted by RIshabh
2017-05-29

dear sir,
i havent found a html layout and i cant change in html view so what can i do sir now
Posted by Tom
2017-05-30

You can find php templates in web/staff/ such as tpl.lead.search.inc.php. Any files with "tpl." prefix is a template.
Posted by Gabriel
2017-05-25

But if I remove the save button, would not it be leaving all users as read-only?
Posted by Tom
2017-05-25

There are two options. (1) You can copy the "staff" folder and put it in side by side. ( You need to rename the new folder to something like "guest" ) Modify the "guest" folder so that the users ... Read More
Posted by Gabriel
2017-05-24

Thanks Tom,

I will continue to see it, I know it is a problem on the Server because I tried it on another computer with a similar configuration and it worked.

On the other hand, can you configure ... Read More
Posted by Tom
2017-05-25

>can you configure read-only users in the address book?
The easiest way is to remove the save button so users can't edit the data.
Posted by Gabriel
2017-05-23

Hello Tom,

The address book was installed without problems but when I go to the login page, it goes completely blank.

The computer where I installed the address book, is installed recently, the ... Read More
Posted by Tom
2017-05-24

First of all, you need to check the error message. I believe you are running the script in a Linux box you set up locally. Then most likely you would find error logs in the /etc/log folder.
Posted by Michele
2017-05-23

Thank you. . . It works perfectly, now if within as 'staff' I can only see when it can be deleted, inserted and edited as 'administrator'. . . Still pats Tom !!!
Posted by Tom
2017-05-24

You can use $this->sys->isAdmin() to decide which code to execute for admins.
Posted by Michele
2017-05-22

Hi Tom, I would also like to hide the 'save' button on the edit page. Where do I find it?
Thank you!
Posted by Tom
2017-05-23

Hi, you can find the code for buttons in web/staff/include/tpl.detail.buttons.inc.php
Posted by Michele
2017-05-20

Thank you Tom, I solved with your info here as I did:

<? Php
If ($ this-&gt; sys-&gt; isAdmin ()) {
Echo 'Only admin can see this message!';
<? Php include (INC_SR_TOP_BAR);
}
>;
The 'Add / new' ... Read More
Posted by Tom
2017-05-21

Great!
Posted by Michele
2017-05-16

I do not understand what I have to do. You would make me a practical example.
I mean. . . You would see me practically in what line I need to enter your queues. Grazielle
Thank you
Posted by Tom
2017-05-16

For starters, put this code in one of templates (web/staff/tpl.(table-name).search.inc.php)
<?php

if ( $this->sys->isAdmin() ) {
echo "Only admin can see this message!";
}

?>
If you are logged ... Read More
Posted by Michele
2017-05-05

Hi Tom, how can i export pdf to search result
Posted by Tom
2017-05-06

Sorry, it doesn't have pdf export feature.