Adding Additional Levels

Hello, I’ve searched for this topic but was unable to find it. I’m looking to create additional levels. I know I’m supposed to add define(“MEMBERSHIP_LEVELS”, 4) to my wp-config.php file but after doing this my site no longer connected to the server. I removed the line and the site connected.

You only need to add such a line if you want to have more than 4 levels. So what you have written here is unnecessary.

In case you do want more than 4, though, your code has a problem because it lacks a closing semi-colon. It should be something like this:
define('MEMBERSHIP_LEVELS', 10);

Tim this is exactly what I was requesting, I was the missing the semi-colon. Thanks for your help.

Great! Thanks for responding. I wish everyone who asks for assistance would do so!