Title: PermaLink Structure Help &#8211; MAL
Last modified: March 7, 2023

---

# PermaLink Structure Help – MAL

 *  Resolved [ltm2120](https://wordpress.org/support/users/ltm2120/)
 * (@ltm2120)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/permalink-structure-help-mal/)
 * I was having some issues setting up custom permalinks using the maps and location
   add on
 * Basically what i am looking for it to remove the adverts_location and have url
   similar to one below. Where the url has the state/city with nothing before it
   and is dynamic based on each location
 * Example URL
 * mywebstite.com/state/city

Viewing 1 replies (of 1 total)

 *  Plugin Author [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * (@gwin)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/permalink-structure-help-mal/#post-16539871)
 * Hi,
 * i do not know if you will be able to use the taxonomies without any prefix at
   all, this might be complicated as the WordPress router might get confused and
   redirect users incorrectly, so in very least a prefix like just “l” is recommended.
 * To show the full path instead of term name you can add the below code in your
   theme functions.php file
 *     ```wp-block-code
       add_filter("wpadverts_mal_register_taxonomy", function($args, $type) {
         if($type != "advert_location") {
           return $args;
         }
         $args["rewrite"]["slug"] = "l";
         $args["rewrite"]["hierarchical"] = true;
         return $args;
       },10,2);
       ```
   
 * Once you do that go to the wp-admin / Settings / Permalinks panel and click the“
   Save Changes” button to reset WP router and apply new URL scheme.

Viewing 1 replies (of 1 total)

The topic ‘PermaLink Structure Help – MAL’ is closed to new replies.

 * ![](https://ps.w.org/wpadverts/assets/icon-256x256.png?rev=2423472)
 * [WPAdverts - Classifieds Plugin](https://wordpress.org/plugins/wpadverts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpadverts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpadverts/)
 * [Active Topics](https://wordpress.org/support/plugin/wpadverts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpadverts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpadverts/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Greg Winiarski](https://wordpress.org/support/users/gwin/)
 * Last activity: [3 years, 3 months ago](https://wordpress.org/support/topic/permalink-structure-help-mal/#post-16539871)
 * Status: resolved