Page 1 of 1

Allow adding new records from homepage.

Posted: 2018-02-22 01:14
by Jay Webb
Need a little help, just finished up loading customizing and now that that's done, they no longer want the "+" to "Allow adding new records from homepage" that's on the main button, how can I remove without re uploading all the files over again and re customizing. I can't seam to find where to turn i off in a php file.
Anyone know this little jem is?

Thank's

Re: Allow adding new records from homepage.

Posted: 2018-02-22 12:41
by udayvatturi
Hi,
I also dont find it on tool.

But if you want to remove it programatically, do this in home.php

You should see something like this.

Code: Select all

			/* allow homepage 'add new' for current table? */
			$tChkAHAN = array_search($tn, array("test","test1"));
Just comment out the line like below or remove items in array

Code: Select all

			/* allow homepage 'add new' for current table? */
			//$tChkAHAN = array_search($tn, array("test","test1"));
			
			or 
			
			/* allow homepage 'add new' for current table? */
			$tChkAHAN = array_search($tn, array());
			

Re: Allow adding new records from homepage.

Posted: 2018-02-22 17:22
by Jay Webb
Thank you udayvatturi, that work perfect. I just commented out and that did it.
/* allow homepage 'add new' for current table? */
/*$tChkAHAN = array_search($tn, array("filename"));*/