Remove the extra details from listing URLs upon submission

In order to do that you have to use the following code in the function.php file of your child theme:

function listable_custom_remove_url_slugs() {
    add_filter( 'submit_job_form_prefix_post_name_with_company', '__return_false' );
    add_filter( 'submit_job_form_prefix_post_name_with_location', '__return_false' );
    add_filter( 'submit_job_form_prefix_post_name_with_job_type', '__return_false' );
}
add_action( 'after_setup_theme', 'listable_custom_remove_url_slugs' );

Find more details in the following screenshot:

Updated on October 10, 2023

Can't find what you’re looking for? Ask a human.

We're a small team of real people providing real help. Send us an email at [email protected] and we will give you a helping hand.