lulech23
Forum Replies Created
-
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Update FontAwesome Library to v6Update: opened a pull request for this feature in GitHub: https://github.com/motopress/getwid/pull/128
In the meantime, anyone else with the same issue can use my fork.
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] SMTP is not working@qriouslad Figured something out. Turns out that if I enable “Force the usage of the sender name/email defined above” I’m able to send over Exchange SMTP. I suspect either
$phpmailer->Fromor$phpmailer->FromNameis not being set in some conditions if$smtp_force_fromis not enabled.In my case, it’s no problem to force the sender name/email, so I will go with this for now!
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] SMTP is not workingHaving the same issue here. I’m using a Microsoft Exchange account with an application password for SMTP authentication. Works just fine under FluentSMTP, but under ASE with the same settings, the test email just spins endlessly. I’ve left it running for a solid 15 minutes but still nothing, and no debug output in my debug.log either. Attempting to send emails from elsewhere on the site does nothing too.
I’m suspecting STARTTLS, but that’s just a hypothesis.
- This reply was modified 1 year, 9 months ago by lulech23.
Forum: Plugins
In reply to: [wp-mpdf] There has been a critical error on this site.I can confirm that 3.8.3 solves the issue on my end. Thanks again!
Forum: Plugins
In reply to: [wp-mpdf] There has been a critical error on this site.I am on PHP 8.1.27. Thanks for investigating!
Forum: Plugins
In reply to: [wp-mpdf] There has been a critical error on this site.I am also experiencing this. Enabling debugging outputs the following error message:
Warning: Attempt to read property “login” on null in /<redacted>/public_html/wp-content/plugins/wp-mpdf/wp-mpdf.php on line 455
Fatal error: Declaration of Psr\Log\AbstractLogger::emergency(Stringable|string $message, array $context = []): void must be compatible with Psr\Log\LoggerInterface::emergency($message, array $context = []) in /<redacted>/public_html/wp-content/plugins/wp-mpdf/vendor/psr/log/src/LoggerTrait.php on line 23
Hi Patrick,
I can confirm that the latest updates have solved this issue! Thanks for the fix.
In my case, I want the admin toolbar to show for Administrators and Editors only. I have Branda set to hide the admin bar for Subscribers and Guests, but the toolbar is not actually hidden for these roles. Instead, the toolbar is visible, but empty (no links). Maybe it’s because I have also customized the content of the admin bar? If so, there would appear to be a conflict between the customization and visibility features in Branda.
Since admin bar hooks in
functions.phpare overridden by Branda as well, that’s why I’ve had to resort to CSS overrides. Otherwise, Branda forces it to be visible regardless of settings.I can confirm this is an issue. Disabling “show toolbar when viewing site” does not actually hide the toolbar, and using the
'show_admin_bar'filter is overridden by Branda. I’ve had to resort to conditionally adding CSS to hide the toolbar manually.