A highly recommended, amazing product that punches way above its weight!
]]>ur_mail_errors-8123fad50f077ed7cee45f8d84eeb69d.log?
That’s the entirety of the page: the error message and the log link. Does that mean none of my emails that I set up for Registration will be delivered? What does this error mean? Thank you.
]]>We enjoy using your plugin and its features — especially the External Tools feature.
Based on the above, can you guys kindly add the following website performance checkers to your plugin’s External Tools feature?
Speedvitals (TTFB Test)
WebPage Test (Waterfall Test)
Until then, we developed the code snippet provided below for the same purpose.
Thank you!
————
function add_submenu_links ($wp_admin_bar) {
if ( ! is_admin() ) {
$wp_admin_bar->add_node( array(
'parent' => 'rank-math-third-party',
'id' => 'speedvitals',
'title' => 'SpeedVitals',
'href' => 'https://speedvitals.com/ttfb-test',
'meta' => false
));
$wp_admin_bar->add_node( array(
'parent' => 'rank-math-third-party',
'id' => 'webpagetest',
'title' => 'WebPageTest',
'href' => 'https://www.webpagetest.org/',
'meta' => false
));
}
}
add_action( 'admin_bar_menu', 'add_submenu_links',999 );
]]>