[Plugin: Edit Category Slug (WPMU)] How to make it work with last wpmu 3.0
-
Due to the wordpressMU core code change there is some difference with in new forms name. “Edit category slug” plugin is searching for the form beggining to append his own labels and “slug” fields and can’t find it.
Easy solution:
- Open for edit plugin main file
- find this text:
- change it with next code:
edit-category-slug/edit-category-slug.php
var form_addcat = document.getElementById('addcat');
var form_editcat = document.getElementById('editcat');
var form_addcat = document.getElementById('addcat');
var form_editcat = document.getElementById(‘edittag’);`voilà.
The problem resolved, plugin is working.
The solution resolve form name change.https://www.ads-software.com/extend/plugins/edit-category-slug/
- The topic ‘[Plugin: Edit Category Slug (WPMU)] How to make it work with last wpmu 3.0’ is closed to new replies.