Christian Sabo
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] The forms do not send emails@lexal73 Do you receive other mails sent by WordPress? For example when you let it send the “password reset” link?
If you do NOT receive such e-mails, there might be an issue with the mail function itself (which is independent from CF7) and setting up an SMTP account to send e-mails might solve this. To learn more about this topic, see https://wphowto.net/smtp-mailer-plugin-for-wordpress-1482
We do not use “Cookie Notice & Compliance for GDPR / CCPA”.
We are using “Borlabs Cookie – Cookie Opt-in” (v 2.2.63).
If deactivated, the form submission works once. The second attempt fails.
The failure message is #4, “Submission was referred to as spam”.Downgrading CF7 to v 5.7.4 did not help either.
Theme is Astra v 4.1.3 – plus 18 plugins active (Astra Pro, Elementor, Elementor pro, Ultimate Addons, Maintainance Mode, etc.). So switching everything off but CF7 doesn’t work.
- This reply was modified 1 year, 7 months ago by Christian Sabo.
- This reply was modified 1 year, 7 months ago by Christian Sabo.
Yes, same here with GRV v3 ??
The GRC statistics show an increasing amount of suspicious request (more than usually), today the most with a scoro of 0.9
Forum: Plugins
In reply to: [Broken Link Checker] Replacement plug-in?@windracer|s question is still valid, IMHO; Version 2.0 is beta and v1 still included. But that won’t last forever – at some point v2 won’t be beta anymore and v1 will be removed …
Forum: Plugins
In reply to: [Disable Flamingo Addressbook] Cookies?Oh, hi, sorry, I did not get any notification about your request. Just saw it today.
To answer your question: no, my plugin does not use any cookie(s).
Forum: Plugins
In reply to: [Simple Google reCAPTCHA] Change Language@gooloode Done; the language pack(s) will be available within a few minutes. Please check your backend for translation updates ??
For further information about how translations in WordPress do work, see this post:
Nice to hear, thank you! (And what a quick response …)
I’m sorry I have to say that Ditty is NOT compliant with GDPR.
When activated, there is a http request for fontawesome. As this requests goes to a different server than the website’s host, this is not permitted in GDPR area.<link rel='stylesheet' id='ditty-fontawesome-css' href='https://use.fontawesome.com/releases/v5.15.3/css/all.css?ver=5.15.3' media='' />
@metaphorcreations
It would be great if you could fix this and simply make your plugin serve the icons by itself.Forum: Themes and Templates
In reply to: [Rowling] How to add custom editor style css?@anlino Thank you so much, Anders! Works perfect.
Forum: Themes and Templates
In reply to: [Baskerville] Specific Home page in baskervilleCheck your WP Settings > Reading > “Your homepage displays” > “Homepage”
Forum: Plugins
In reply to: [W3 Total Cache] Is the Log4j vulnerability an issue?It wouldn’t hurt to do it anyway, though, would it?
The w.org forums are not the only place where questions come up.
Assume that my 100+ customers don’t ask here, but contact *me* and ask for a confirmation. This could easily be provided by w.org, so that not only the security team knows that we do NOT have a problem …Forum: Plugins
In reply to: [W3 Total Cache] Is the Log4j vulnerability an issue?Do you think we can have a kind of official statement or blog post (placed on a prominent spot on www.ads-software.com) that confirms that WordPress is NOT affected by Log4j?
This might help to avoid lots of questions and mails ??
Forum: Plugins
In reply to: [Easy Appointments] Add Data and Time information in email letterThe available tags are listed in “Easy Appointment > Settings > Mail-Notifications”
default tags are:
#id#, #date#, #start#, #end#, #status#, #created#, #price#, #ip#, #link_confirm#, #link_cancel#, #url_confirm#, #url_cancel#, #service_name#, #service_duration#, #service_price#, #worker_name#, #worker_email#, #worker_phone#, #location_name#, #location_address#, #location_location#, #email#,
Forum: Themes and Templates
In reply to: [Baskerville] Logo and titleIf you are using a child theme, you might want to try the following code (located in header.php).
<div class="header-inner section-inner"> <div> <?php $custom_logo_id = get_theme_mod( 'custom_logo' ); $legacy_logo_url = get_theme_mod( 'baskerville_logo' ); $blog_title_elem = ( ( is_front_page() || is_home() ) && ! is_page() ) ? 'h1' : 'div'; $blog_title_class = $custom_logo_id ? 'blog-logo' : 'blog-title'; $blog_title = get_bloginfo( 'title' ); $blog_description = get_bloginfo( 'description' ); if ( $custom_logo_id || $legacy_logo_url ) : $custom_logo_url = $custom_logo_id ? wp_get_attachment_image_url( $custom_logo_id, 'full' ) : $legacy_logo_url; ?> <a class="logo" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" style="float:left; clear:both;" > <img src="<?php echo esc_url( $custom_logo_url ); ?>"> <span class="screen-reader-text"><?php echo $blog_title; ?></span> </a> <?php endif; ?> <h1 class="blog-title"> <a href="<?php echo esc_url( home_url() ); ?>" rel="home"><?php echo $blog_title; ?></a> </h1> <?php if ( $blog_description ) : ?> <h3 class="blog-description"><?php echo $blog_description; ?></h3> <?php endif; ?> </div> </div><!-- .header-inner -->
- This reply was modified 3 years, 1 month ago by Christian Sabo.
- This reply was modified 3 years, 1 month ago by Christian Sabo.
Forum: Plugins
In reply to: [Widget CSS Classes] Widget Class boxes missing in Block Editor… and IDs to p-Block
… and to the shortcode block …
… …??