XF 2.3 Building my first add-on

Seeker-Smith

Well-known member
I want to learn how to build an add-on and install it on Xenforo. I have my test site in development mode with
$config['debug'] = true;
$config['development']['enabled'] = true;

What I'm not seeing in the ACP is any section for Development → Add-ons or import.

Am I missing a key to this puzzle? I'm assuming there must be more to it.

Screen Shot 2026-01-07 at 7.07.57 PM.webp
 
It would be beneficial for you to watch the entire Building with Xenforo 2. Follow along and build what Kier demonstrates in the video. If you have any question, I will help out where I can. This is how I got started last year.

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
What I'm not seeing in the ACP is any section for Development → Add-ons or import.
Add ons section is not part of the Developement. I assume that by import you mean the part when you can install add ons? If I assumed correctly you must enter this code to your config.php file.

PHP:
$config['enableAddOnArchiveInstaller'] = true;
 
Add ons section is not part of the Developement. I assume that by import you mean the part when you can install add ons? If I assumed correctly you must enter this code to your config.php file.

PHP:
$config['enableAddOnArchiveInstaller'] = true;
Hi. Yeah that’s already in my config. I’m going the watch that video. I must be missing something else.
 
Back
Top Bottom