lophas
Forum Replies Created
-
Forum: Plugins
In reply to: [Lock User Account] Locking Stopped WorkingYou may drop the fix_Baba_User_Meta.php file into your /wp-content/mu-plugins/ folder
OR copy the code content into your functions.php in your theme folderForum: Plugins
In reply to: [Lock User Account] Multisite Supportbtw this plugin locks sitewide in multisite environments (not per blog) accordingly my snippet just adds the same functionality to the network admin /wp-admin/network/users.php
Forum: Plugins
In reply to: [Lock User Account] Locking Stopped WorkingProbably because you have filtered/ordered your list. Plugin works only with strict /wp-admin/users.php url, without any url parameters.
I have created a code snippet to fix this minor issue and provide multisite and individual profile edit support as well. https://github.com/lophas/lock_user_account/Forum: Plugins
In reply to: [Lock User Account] Multisite SupportI have created a code snippet to provide multisite and individual profile edit support. https://github.com/lophas/lock_user_account/
Forum: Plugins
In reply to: [Leaflet Map] All maps are goneSeveral maps may be broken due to changing url ampersand to & amp;
shortcodes/class.map-shortcode.php #317:
var baseUrl = '<?php echo htmlspecialchars($tileurl, ENT_QUOTES); ?>';Quick fix to change back to the previous version:
var baseUrl = '<?php echo $tileurl; ?>';