Hi @monetenfuchs,
Thank you for getting back to me. Do you have any additional plugins active on the site that integrate with Pretty Links? The “link_redirect_action” option isn’t something that we store in the database, so I’m wondering if it’s coming from somewhere else.
If you have any plugins that integrate with us, please try temporarily deactivating them and seeing if that helps to remove the deprecation notice you’re receiving.
If that still doesn’t help, please add this code snippet either to your theme’s functions.php or using a plugin such as WP Code and reload the admin dashboard once it’s added. This will remove the “link_redirect_action” option stored in the database so you should no longer receive that deprecation notice going forward:
add_action( 'admin_init', function() {
$options = get_option( 'prli_options' );
if ( $options && is_array( $options ) ) {
unset( $options['link_redirect_action'] );
$prli_options = new PrliOptions( $options );
$prli_options->store();
}
} );
I hope this helps!
Kind regards,