{"id":26793260,"url":"https://github.com/beapi/acf-iconmoon","last_synced_at":"2025-08-01T20:12:20.076Z","repository":{"id":58846899,"uuid":"61720402","full_name":"BeAPI/acf-iconmoon","owner":"BeAPI","description":"Add iconmoon selector","archived":false,"fork":false,"pushed_at":"2022-09-08T09:42:54.000Z","size":884,"stargazers_count":7,"open_issues_count":3,"forks_count":2,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-07-29T09:26:21.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BeAPI.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-06-22T13:14:47.000Z","updated_at":"2023-07-26T20:18:30.000Z","dependencies_parsed_at":"2023-01-18T01:00:43.544Z","dependency_job_id":null,"html_url":"https://github.com/BeAPI/acf-iconmoon","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/BeAPI/acf-iconmoon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeAPI%2Facf-iconmoon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeAPI%2Facf-iconmoon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeAPI%2Facf-iconmoon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeAPI%2Facf-iconmoon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BeAPI","download_url":"https://codeload.github.com/BeAPI/acf-iconmoon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BeAPI%2Facf-iconmoon/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268290751,"owners_count":24226646,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-29T16:19:37.982Z","updated_at":"2025-08-01T20:12:20.027Z","avatar_url":"https://github.com/BeAPI.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Advanced Custom Fields: Iconmoon #\n\n## Description ##\n\nThis enhance ACF with a field icons. Add a field type selector to include your great font icon and returns class icon.\nOne activated you'll be able to use a custom ACF field type which is an icon selector\n\n## Important to know ##\n\nIn case you want to include this small plugin to your project running composer you can add this line to your composer.json :\n\n```json\n  \"repositories\": [\n    {\n      \"type\": \"vcs\",\n      \"url\": \"https://github.com/BeAPI/acf-iconmoon\"\n    }\n  ]\n```\n\nthen run the command :\n\n```shell\ncomposer require bea/acf-iconmoon\n```\n\n## Tips ##\n\n### Using this with your own font icon in your own theme ###\n\nFont family name, font files dir path and font files URL are filterable.\n\n```php\n/**\n * Update icon file css path.\n *\n * @return string\n */\nfunction bea_override_acf_iconmoon_filepath() {\n\treturn get_stylesheet_directory() . '/assets/css/icons.css';\n}\nadd_filter( 'bea_iconmoon_filepath', 'bea_override_acf_iconmoon_filepath' );\n\n/**\n * Update icon file css url\n *\n * @return string\n */\nfunction bea_override_acf_iconmoon_fileurl() {\n\treturn get_stylesheet_directory_uri() . '/assets/css/icons.css';\n}\nadd_filter( 'bea_iconmoon_fileurl', 'bea_override_acf_iconmoon_fileurl' );\n\n/**\n * Update icon files.\n *\n * @return array\n */\nfunction bea_override_acf_iconmoon_fonts() {\n\treturn array(\n\t\t'eot' =\u003e get_stylesheet_directory_uri() . '/assets/fonts/bea_icons.eot',\n\t\t'woff' =\u003e get_stylesheet_directory_uri() . '/assets/fonts/bea_icons.woff',\n\t\t'ttf' =\u003e get_stylesheet_directory_uri() . '/assets/fonts/bea_icons.ttf',\n\t\t'svg' =\u003e get_stylesheet_directory_uri() . '/assets/fonts/bea_icons.svg',\n\t);\n}\nadd_filter( 'bea_iconmoon_fonts', 'bea_override_acf_iconmoon_fonts' );\n\n/**\n * font family for theme\n */\nfunction bea_override_acf_iconmoon_font_family() {\n    return 'my_custom_font_family_name';\n}\nadd_filter( 'bea_iconmoon_font_family_name', 'bea_override_acf_iconmoon_font_family' );\n```\n\n## Changelog ##\n\n### 0.5 (September 9, 2022)\n* Update regex use for extracting icon's name from CSS file \n\n### 0.4 (September 21, 2017)\n* Add support for Select2 v4\n\n### 0.3 (December 22, 2016)\n* Refactor plugin\n* Add support for clear button\n\n### 0.2 (June 28, 2016)\n* lang, gitignore + readme\n\n### 0.1 (February 12, 2016)\n* initial commit\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeapi%2Facf-iconmoon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeapi%2Facf-iconmoon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeapi%2Facf-iconmoon/lists"}