sunildhanda
Forum Replies Created
-
Forum: Plugins
In reply to: [DE Social Login] Blank ScreenSorry for such inconvenience, but for your kind information, facebook.php is there.
Check de-social-login.php and find the code
error_reporting(E_ALL)and comment this line.Forum: Plugins
In reply to: [DE Social Login] Google Login FailThanks to share your problem, 0.1.3 is already working http://softwaredevelopertricks.com/
Can you share your site url here or contact me at skype “sunil-dhanda” (Chandigarh, India)
Forum: Plugins
In reply to: [DE Social Login] how to use it on template?Sachin, if you need any other help or updation to this plugin, please share.
Forum: Plugins
In reply to: [DE Social Login] how to use it on template?Hello Sachin Vairagi,
Use the below code to add to your custome template:
if(function_exists('wp_de_render_login_form')){wp_de_render_login_form();}Forum: Plugins
In reply to: [DE Social Login] how to use it on template?Thanks for adding question here.
Sorry, it only add the login buttons on wp-login page only.
Its a great question, i will shortly work on it and update asap.
thanks again
You need to write class in string instead of passing $this, i.e.
register_uninstall_hook( __FILE__, array('your_class_name', 'your_class_method') );As you see the if condition below, the first parameter of callback must not be an object.
function register_uninstall_hook( $file, $callback ) { if ( is_array( $callback ) && is_object( $callback[0] ) ) { _doing_it_wrong( __FUNCTION__, __( 'Only a static class method or function can be used in an uninstall hook.' ), '3.1' ); return; } ... }For more help Visit here
You need to write class in string instead of passing $this, i.e.
register_uninstall_hook( __FILE__, array('your_class_name', 'your_class_method') );As you see the if condition below, the first parameter of callback must not be an object.
function register_uninstall_hook( $file, $callback ) { if ( is_array( $callback ) && is_object( $callback[0] ) ) { _doing_it_wrong( __FUNCTION__, __( 'Only a static class method or function can be used in an uninstall hook.' ), '3.1' ); return; } ... }For more help Visit here