fhwebdesign
Forum Replies Created
-
Hello @adamdunnage , thanks for your quick reply.
Isn’t the code for the auto ads placed automatically within the site kit plugin so I cannot modify that part of code?Forum: Plugins
In reply to: [GDPR tools: Cookie notice + privacy] Validator w3.org zeigt Error Fehler anHallo,
danke für die Meldung.
Ich werde in Kürze ein Update ver?ffentlichen, das den Fehler behebt.Forum: Plugins
In reply to: [GDPR tools: Cookie notice + privacy] Textfeldrand ist permanent sichtbarHallo,
welches Textfeld meinst du genau?
Kannst du mir ggf. einen Screenshot und einen Link zu deiner Seite zur Verfügung stellen?Thank you for your investigations.
Right now, I only want the automatic ads only for mobile.
So, I addeddisplay: none
to all manually placed ads.
But there are still no automatic ads placed. Is this also AdSense specific and I should contact the AdSense help centre?The auto-ads are enabled on adsense level.
I have no page without manually inserted ads, because they are inserted in header and footer.
So, if there are manually inserted ads, automatic ads can not be placed?Hello Adam,
thanks for your fast reply.I have no other plugins with ads functionality installed, but I added manually some ads code snippets from google adsense.
Which ad unit code do you mean in detail so I can check?Forum: Plugins
In reply to: [Simple Local Avatars] Add alt to image@jeffpaul
Thanks for the update.
Is this repo the correct one?
https://github.com/10up/simple-local-avatarsEDIT:
I found a better solution:/* Enable ALT for Avatars */ add_filter( 'get_avatar', 'fh_set_avatar_alt' ); function fh_set_avatar_alt( $avatar ) { if( have_comments() ) { $alt = get_comment_author(); } else { $alt = get_the_author_meta( 'display_name' ); } $avatar = str_replace( 'alt=\'\'', 'alt=\'Avatar for ' . $alt . '\'', $avatar ); return $avatar; }
- This reply was modified 3 years, 2 months ago by fhwebdesign.
Thanks for the quick response.
The disabling of fontawesome is working fine. I am looking forward to getting the update to disable google fonts.Forum: Plugins
In reply to: [Simple Local Avatars] Add alt to image@jeffpaul
To verify, I just tested it with the free ‘BusiCare Dark’ theme.
With this theme, I also can reproduce this problem.What are your next steps?
Forum: Plugins
In reply to: [Float menu - awesome floating side menu] Disabeling font awesome not workingHi,
I just reset the server cache and also the client cache, but the error still perists.
I am using WP version 5.8.1 and float menu version 4.0.
You can check it there: https://t1p.de/uu06EDIT: I found out why, I preloaded the font with absolute paths.
Thanks!- This reply was modified 3 years, 2 months ago by fhwebdesign.
Forum: Plugins
In reply to: [Simple Local Avatars] Add alt to image@jeffpaul
Here you go, but it’s a paid theme. It’s called ‘TM Heli’.
If you want I can setup a test environment for you.I just checked, it seems like because in the includes/class-simple-local-avatars.php, the get_simple_local_avatar() function gets called without any parameters, so the alt attribute gets defaulted to ” (as you can see in simple-local-avatars.php)
- This reply was modified 3 years, 2 months ago by fhwebdesign.
- This reply was modified 3 years, 2 months ago by fhwebdesign.
Forum: Plugins
In reply to: [Simple Local Avatars] Add alt to image@jeffpaul
Hi, thanks for your quick reply.
In the media library, an alt text is set. But, on my page, the image has an empty alt attribute.WP version: 5.8
Simple Local Avatars version 2.2.0Forum: Plugins
In reply to: [Contact Form 7] CF7 post status 404Fixed:
the website was served by nginx. Thus, this config has to be added to the nginx configuration:if (!-e $request_filename) { set $test P; } if ($uri !~ ^/(plesk-stat|webstat|webstat-ssl|ftpstat|anon_ftpstat|awstats-icon|internal-nginx-static-location)) { set $test "${test}C"; } if ($test = PC) { rewrite ^/(.*)$ /index.php?$1; }
Forum: Plugins
In reply to: [Contact Form 7] CF7 post status 404I just tested – even a new form gets this error.
Forum: Plugins
In reply to: [Contact Form 7] CF7 post status 404Hi @takayukister ,
thank you for your reply.
I just disabled all plugins (except CF7, Slider Revolution and WPBakery Page Builder).
The issue still exists.I wonder where the /feedback route comes from – without it, there is no 404 error.
I also removed the .htaccess and other directives to prevent CORS blocking.
- This reply was modified 3 years, 3 months ago by fhwebdesign.
- This reply was modified 3 years, 3 months ago by fhwebdesign.