InterviewSolution
| 1. |
How Do I Eliminate The Pathway Or Breadcrumbs? |
|
Answer» In this case the BREADCRUMB for that page would look like: "Home >> Books >> Pages >> New Page". If you wish to eliminate the pathway ENTIRELY, edit your template html (INDEX) file. Usually it will look like this: If you wish to eliminate it on a specific page, such as just the home page, you can modify the template in this way: New line:if($option != "" && $option != "com_frontpage")New line:{ New line:?> Existing: Existing: Existing: New line:} New line:?> Understanding: The first line says that if the option in the url does not equal com_frontpage (!="com_frontpage") display the pathway. In php ! MEANS not. In this case the breadcrumb for that page would look like: "Home >> Books >> Pages >> New Page". If you wish to eliminate the pathway entirely, edit your template html (index) file. Usually it will look like this: If you wish to eliminate it on a specific page, such as just the home page, you can modify the template in this way: Understanding: The first line says that if the option in the url does not equal com_frontpage (!="com_frontpage") display the pathway. In php ! means not. |
|