Installation
- Navigate to the Add New sub-page under the Plugins admin page.
- Search for
Connections Business Directory Education Level. - The plugin should be listed first in the search results.
- Click the Install Now link.
- Lastly, click the Activate Plugin link to activate the plugin.
Assign Level

When adding or editing an Entry, the education level can be assigned in the “Education Level” metabox by selecting the desired level from the dropdown.
Content Block
To display the assigned Entry Education Level, navigate to the Connections Settings admin page, and click the Display tab. Scroll to the Result List Content Block section, and enable the “Education Level” Content Block. Next, scroll to the Single Entry Content Block section, enable the “Education Level” Content Block, and save the changes.
Widget
In addition to displaying the Entry Education Level using the Content Blocks, you can display the Education Level in the theme’s sidebar using the included widget.
Important
The widget will only display when the entry detail/profile view is shown.
FAQs
None so far :)
Developer
Hooks
Actions
- No action hooks are available.
Filters
Connections_Directory/Content_Block/Register_Option/education_levelConnections_Directory/Education_Level/Options
Example
Add a new education level to the available options.
add_filter(
'Connections_Directory/Education_Level/Options',
static function( $options ) {
$options['50'] = "No Schooling";
return $options;
}
);Template
Display the education level in a custom template.
\Connections_Directory\Content_Blocks::instance()->renderBlock( 'education_level', $entry );
Translation
The text domain for this add-on is connections_education_levels.


