Hey,
Sorry for the delay on this – I wasn’t being notified of requests! You can change it by adding the following code to your child theme’s functions.php file:
/**
* Modify feature requests archive slug.
*
* @param $slug
*
* @return string
*/
function jck_modify_sfr_archive_slug( $slug ) {
return 'ideas';
}
add_filter( 'jck_sfr_archive_slug', 'jck_modify_sfr_archive_slug', 10 );
once added, go to Settings > Permalinks. Visiting that page will clear your permalinks cache.
I was awaiting feedback from people before proceeding with a pro version, but it seems a few people would like it.
Hope this helps!
-
This reply was modified 7 years ago by
jamesckemp.