Jimport Updated on June 7, 2023 by Brad Markle 0 Minutes, 36 Seconds to Read jimport is a function that is used to include Joomla library files. How to use Jimport: Find the path to the library file you want to include. • In our testing, we want to import /libraries/joomla/filesystem/path.php • Jimport will only import files found within the libraries folder. Make the following changes to the path: • Remove /libraries/ from the path • Remove .php from the path • Replace slashes with periods in the path After following the steps above, /libraries/joomla/filesystem/path.php will be: joomla.filesystem.path Take this new path and pass it to jimport, as in: jimport(‘joomla.filesystem.path‘); If you followed along with the above example, you can see in the screenshot below how jimport works: Share this Article Related Articles How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component Changing Email Settings in Joomla 3.1 Using the Redirect Manager in Joomla 3.1 How to add Bootstrap to a Joomla 3.1 Template How to Use Bootstrap 5.0 Alerts in Joomla 4.0