Forked from houke/acf-icon-picker (which is no longer in active dev), updated to work with ACF v6.3 and above.
Add the svg icons you want to be available in your theme to an acf folder inside an img folder in your theme. The field returns the name of the svg.
This ACF field type is compatible with:
- ACF 6
- ACF 5
Run composer require smithfield-studio/acf-svg-icon-picker
and activate the plugin via the plugins admin page.
- Copy the
acf-svg-icon-picker
folder into yourwp-content/plugins
folder - Activate the Icon Selector plugin via the plugins admin page
- Create a new field via ACF and select the Icon Selector type
If you're coming from the original ACF Icon Picker plugin, you can switch to this plugin by following these steps:
- Deactivate the old ACF Icon Picker plugin
- Install the ACF SVG Icon Picker plugin via Composer or manually
- Activate the ACF SVG Icon Picker plugin
- Go over your field configurations and change the field type from
icon-picker
tosvg_icon_picker
in the field settings. Be aware of the underscores in the field type name. - Check if the field type is now available in your ACF field settings
Use the below filters to override the default icon folder, path, and / or URL:
// modify the path to the icons directory
add_filter('acf_icon_path_suffix', 'acf_icon_path_suffix');
function acf_icon_path_suffix($path_suffix) {
return 'assets/img/icons/';
}
// modify the path to the above prefix
add_filter('acf_icon_path', 'acf_icon_path');
function acf_icon_path($path_suffix) {
return plugin_dir_path(__FILE__);
}
// modify the URL to the icons directory to display on the page
add_filter('acf_icon_url', 'acf_icon_url');
function acf_icon_url($path_suffix) {
return plugin_dir_url( __FILE__ );
}
/// modify the path to the icons directory
add_filter('acf_icon_path_suffix',
function ( $path_suffix ) {
return '/assets/images/icons/'; // After assets folder you can define folder structure
}
);
// modify the path to the above prefix
add_filter('acf_icon_path',
function ( $path_suffix ) {
return '/app/public/web/themes/THEME_NAME/resources';
}
);
// modify the URL to the icons directory to display on the page
add_filter('acf_icon_url',
function ( $path_suffix ) {
return get_stylesheet_directory_uri();
}
);
Using with ACF Builder / ACF Composer
$fields->addField('my_icon', 'svg_icon_picker', [
'label' => 'My Icon',
])
- 3.1.0 - Changed name of field to
svg_icon_picker
to avoid conflicts with vanilla ACF Icon Picker field. - 3.0.0 - Revert to original ACF field name, quick tidy + README updates
- 2.0.0 - Fix for ACF 6.3 which now has an official icon-picker field + merged open PRs from Levdbas & phschmanau
- 1.9.1 - ACF 6 compatibility fix. Thanks to idflood
- 1.9.0 - Fix issue with Gutenberg preview not updating when removing. Thanks to cherbst
- 1.8.0 - Fix issue with Gutenberg not saving icon. Thanks to tlewap
- 1.7.0 - 2 new filters for more control over icon path. Thanks to benjibee
- 1.6.0 - Performance fix with lots of icons. Thanks to idflood
- 1.5.0 - Fix issue where searching for icons would break preview if icon name has space
- 1.4.0 - Add filter to change folder where svg icons are stored
- 1.3.0 - Adding close option on modal
- 1.2.0 - Adding search filter input to filter through icons by name
- 1.1.0 - Add button to remove the selected icon when the field is not required
- 1.0.0 - First release