Mostly notes about Joomla extension development.
- Details
- Category: Blog
For many years we used Form2Content to allow non-technical users to add complex pages that had to be formatted in a very specific way. The developer of this component announced some time ago that they would not be transitioning it to J4.
- Details
- Category: Blog
A collapsible menu using bootstrap collapse for templates based on Cassiopeia.
Extract mod_menu files zip and copy the mod_menu folder to your template/html folder on the site. Extract menu_css.zip and paste the contents of menu.css at the end of your user.css file.
- Details
- Category: Blog
I needed to override the default pagination in a component view template. Normally the pagination is shown with the line
<?php echo $this->pagination->getListFooter(); ?>
But in this instance I wanted to show the total number of filtered items.
- Details
- Category: Blog
Font Awesome icons from media/system/css/joomla-fontawesome.css
- Details
- Category: Blog
quick fix is to use null coalescing operator
eg strtolower($variable ?? '')