Page 1 of 1

Ways to identify sections of code in a page

Posted: 2022-04-28 19:38
by dlee
I am accustom to writing my own code and using a liberal amount of id's for items within a php page. With Appgini I have been able, so far, to identify the items on the page I want to hide using the classes, but there must be a better way.

My question is, what are ALL the ways to identify sections of code that you might like to manipulate?
Example, I like to hide the "Keyboard Shortcuts" button and here is how I have been able to accomplish this so far in the foot-extras.php file:

Code: Select all

	$j('.help-shortcuts-launcher').hide();
Thanks n advance,
TD