By default, property types and locations in WP-ImmoMakler cannot be edited directly in the WordPress backend.
If you want to edit or delete property types individually, you can make this possible with a simple code snippet.
Display object types in the backend
Add the following filter to the functions.php Your WP-ImmoMakler ChildSkins in:
add_filter(‘immomakler_show_ui_nutzungsart’, ‘__return_true’);add_filter(‘immomakler_show_ui_vermarktungsart’, ‘__return_true’);
After inserting these lines, the menu items appear in the WordPress backend under WP-ImmoMakler:
- Object types
- Locations (optional)
- Type of use
- Marketing type
You can now edit, rename or delete entries as usual.
📌 Note: Use ChildSkin
So that the changes update-safe remain, the adjustments that the functions.php in the WP-ImmoMakler ChildSkin - never directly in the main plugin.
Further information:
👉 What is the WP-ImmoMakler ChildSkin?
⚠️ Caution when deleting
When removing or renaming object types, existing properties may no longer be assigned correctly.
➡️ Check the display on the website carefully after making changes.