designerthan
Forum Replies Created
-
Forum: Plugins
In reply to: [Avatar Privacy] Space between admin bar and sidebar after plugin activationYou are incredible! It works, thanks! Appreciate it.
Forum: Plugins
In reply to: [Avatar Privacy] Space between admin bar and sidebar after plugin activationYes. It’s showing WordPress Version 5.7.1.
Forum: Plugins
In reply to: [Avatar Privacy] Space between admin bar and sidebar after plugin activationI am still using PHP 7.4.
As I am still building the website I want to catch errors as soon as possible. So I have
WP_DEBUG
activated for now.Forum: Plugins
In reply to: [Avatar Privacy] Themes custom avatar turns blank after activatingThank you for your answer. The thought of mine was to add a image, which meets the design of the theme, but I am not in hurry and as fix for now I will do like you suggest to just upload it with your plugin and wait for the released version.
The code looks like it works and is good to know how it would work. Thank you for your help.
Should I set this thread to solved or shall I wait for the release?Have a good night. It’s midnight for me.
Forum: Plugins
In reply to: [Avatar Privacy] Themes custom avatar turns blank after activatingThanks for digging into it and explaining the problem so clearly. I get it.
I tried to understand how I could solve it, but I can’t find the solution. Is there a way I can get it to work? If yes, what would be your suggestion?
I would be very glad for some help.By the way, I tried to dig into your code and it is one of the best commented codes I have seen and I am a software developer myself. Thanks for your job.
If you can tell me which function and file I should look at, I could maybe alter it so it works cause I have all set up at my laptop. But I dont know if it is too advanced for me.
Forum: Plugins
In reply to: [Avatar Privacy] Themes custom avatar turns blank after activatingHi @pputzer, thanks for the fast answer. Here the code how I am integrating the gravatar image
// Custom Gravatar in Settings > Discussion function dtNature_gravatar ($avatar_defaults) { $myavatar = esc_url( get_template_directory_uri() ) . '/assets/img/gravatar.png'; $avatar_defaults[$myavatar] = "Nature Feelings Gravatar"; return $avatar_defaults; } add_filter('avatar_defaults', 'dtNature_gravatar'); // Custom Gravatar in Settings > Discussion