Viewing 1 replies (of 1 total)
  • Plugin Author classifiedswp

    (@classifiedswp)

    @mfarhanakram,

    Paste this code to your theme ‘functions.php’;

    
    add_filter( 'register_post_type_classified_listing', 'my_cwp_post_type' );
    function my_cwp_post_type( $args ) {
    	$args['rewrite']['slug'] = _x( 'xyz', 'Classified permalink - resave permalinks after changing this', 'classifieds-wp' );
    	return $args;
    }
    

    Replace ‘xyz’ with whatever name you want to use instead of ‘classified’.

Viewing 1 replies (of 1 total)
  • The topic ‘Unable to change detail page permalink’ is closed to new replies.