Hello,
Thank you for contacting MyThemeShop. it is not possible to make this URL change using the plugin options. it will require a custom code to be added to your child theme.
Please add/append the following code to the functions.php file of your child theme.
function mts_custom_post_type_args_change( $args, $post_type ) {
if ( $post_type == "listing" ) {
$args['rewrite'] = array(
'slug' => 'listing'
);
}
return $args;
}
add_filter( 'register_post_type_args', 'mts_custom_post_type_args_change', 24, 2 );
You can change ‘slug’ => ‘listing’ and replace “listing” with your desired text to make the change in URL.
After adding the code, please go to Settings -> Permalinks and hit “Save Changes” once.
I hope this helps.
Thank you