It looks like nothing was found at this location. Maybe try one of the links below or a search?
me. * * @since 1.4.8 * * @param string $after Text displayed after setting. * * @return string */ public function from_name_after( $after ) { if ( ! $this->options->get( 'mail', 'from_name_force' ) ) { return $after; } return sprintf( wp_kses( /* translators: %s - URL WP Mail SMTP settings. */ __( 'This setting is disabled because you have the "Force From Name" setting enabled in the WP Mail SMTP plugin.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], ], ] ), esc_url( admin_url( 'options-general.php?page=wp-mail-smtp#wp-mail-smtp-setting-row-from_name' ) ) ); } /** * Display hint if WP Mail SMTP is forcing from email. * * @since 1.4.8 * * @param string $after Text displayed after setting. * * @return string */ public function from_email_after( $after ) { if ( ! $this->options->get( 'mail', 'from_email_force' ) ) { return $after; } return sprintf( wp_kses( /* translators: %s - URL WP Mail SMTP settings. */ __( 'This setting is disabled because you have the "Force From Email" setting enabled in the WP Mail SMTP plugin.', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'target' => [], ], ] ), esc_url( admin_url( 'options-general.php?page=wp-mail-smtp#wp-mail-smtp-setting-row-from_email' ) ) ); } }
It looks like nothing was found at this location. Maybe try one of the links below or a search?