Project slug customization
There are limitations on what can be filtered to customize the slugs within the URL. We have filters for most which needs to be done with PHP, not the htaccess file.
For example, this will allow you to filter the "project" slug:
add_filter('idcf_archive_slug', 'customid_filter_archive_slug'); function customid_filter_archive_slug($slug) { return __('new_slug', 'ignitiondeck'); }
We also offer:
idc_backer_profile_slug
idc_creator_projects_slug
The rest are not currently filterable and would require further customization.