hoyce
Forum Replies Created
-
Forum: Plugins
In reply to: [GAS Injector] DC.JS SupportHi!
Glad to hear you like it. It’s not possible right now but I will add it in the next version of the plugin
Thanks for the feedback.
/ HoyceForum: Plugins
In reply to: [GAS Injector] not excluding admin visitsI have a fix for this in the next version coming out soon. (1.3.1)
Sorry for the late reply.
Forum: Plugins
In reply to: [GAS Injector] Contact Form 7Hi!
It works with any form as long it uses the tags for a HTML-form eg. <form> <input> etc. And yes it should work with several forms.
Forum: Fixing WordPress
In reply to: Deprecated in *\wp-includes\class-simplepie.php on line …No, but maybe some other plugin of mine use same type of methods that causes the errors.
Forum: Fixing WordPress
In reply to: Deprecated in *\wp-includes\class-simplepie.php on line …Ok, I will try that. Do you know which method call the IDrive plugin used?
Forum: Fixing WordPress
In reply to: Deprecated in *\wp-includes\class-simplepie.php on line …I have the same problem as you describe Harish Chouhan. Eg. only one of several blogs have this problem.
I have upgraded to a newer version of PHP and that seems to be the problem. The new version is more strict that the older one and the class-simplepie.php is compatible with older versions but not ok with the new stric php settings.
Forum: Plugins
In reply to: Facebook Like Button For WordPress+1
Forum: Plugins
In reply to: Change validation criteria when creating new blogs on wp-signup.phpWhat I did in my case was to sort out all outer possibilities of errors until the “Site name must be at least 4 characters” was the only one left. In that case I:
1. Cleaned the given WP_Error object.
2. Revalidated the blogname with:
if (onlyOneBlogNameError($errors)) { // If there is only one blogname validation error. // Check if the string length is < 4 if (toShortBlognameForWP($blogname)) { // Create a new error object. $new_errors = new WP_Error; // Check if string length is < 2 if (toShortBlognameForMyPlugin($blogname)) { // add blogname error to new error object. $new_errors->add( 'blogname', __( "Site name must be at least 2 characters", "new-signup-form" ) ); } // add the new error object to the returning result. $prev_results['errors'] = $new_errors; }
3. …and then return the result.