Dan Griffiths
Forum Replies Created
-
Forum: Reviews
In reply to: [Username Changer] Promising, but very sad UX decisionsFinally caught up with the times and integrated with the user profile page!
Forum: Reviews
In reply to: [Username Changer] Does exactly what it says it doesHey Michael! Latest version (3.0.0) now allows changing usernames directly from profile pages!
Forum: Plugins
In reply to: [Revisr] Errors and a quick questionHappens both on a local Windows machine running Desktop Server and on an actual server running CentOS 6 with a standard LAMP stack. The issues, however, are not environment related. The first issue is in the current_branch() function which is called on init during the constructor. The content of current_branch() ran a single command:
$output = git(“rev-parse –abbrev-ref HEAD”);
before returning the 0 index of $output. However, $output isn’t definable is git hasn’t yet been configured. As such, it throws the undefined offset error. The solution is to tweak the return as such:
return ( isset( $output[0] ) ? $output[0] : false );
This only returns the 0 index if its present, otherwise simply returns false.
Haven’t tracked down the second issue, but I’ll let you know when I do.
Forum: Plugins
In reply to: [Revisr] Errors and a quick questionAlso, throws the following on branch creation:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘Revisr’ does not have a method ‘create_branch’ in wp-includes\plugin.php on line 470
Forum: Plugins
In reply to: [Easy Digital Downloads - CSV Manager] Import/Export Menu LinksShould be fixed… try it now
Forum: Reviews
In reply to: [Username Changer] Works perfectly! (Except on WP Multisites)Hey Gary!
Sorry it took so long, but Multisite is now fully supported! Super Admin usernames can only be changed from the Network Dashboard (the option to change them doesn’t even show up on individual sites), and the Super Admin permission is carried over correctly. The only downside is that it has to be network activated for this to work.
Forum: Plugins
In reply to: [Username Changer] sanitize_user hookSorry for the delay, it does now though!
Forum: Plugins
In reply to: [Username Changer] lillte bug (and solution) with change user_nicenameSorry for the LONG delay… this is now fixed.
Forum: Plugins
In reply to: [bbPress Forum Redirect] Does not workJust pushed a major update that included a complete rewrite of the meta box save function. Please try now and see if it works.
Forum: Plugins
In reply to: [bbPress Forum Redirect] Does not workDoes it display an error? Or just fail to save for you?
This issue should now be resolved.
Forum: Reviews
In reply to: [Redux Framework] Top notch work!Thanks for the praise! We do try to be on top of any issues that crop up… we use Redux for our own projects too!
Forum: Reviews
In reply to: [Redux Framework] The best options framework. Period.Thanks! We certainly try to “get” what people want! If you can think of anything we can do to make your life even easier please feel free to let us know!
Forum: Reviews
In reply to: [Username Changer] SQL VulnerabilitiesThanks to this review, the referenced issue has been fixed
Forum: Plugins
In reply to: [Username Changer] SQL Injection VulnerabilitiesThanks for the quick re-approval Pippin!