Configure GNOME Keyring for compatibility (KWallet has issues)
Both systems will remain installed.
We won't use the same Socket for both.
sudo apt install gnome-keyring seahorse
seahorse is the GUI for gnome-keyring
Create a systemd user service for GNOME Keyring Secrets Daemon
in order to avoid the .desktop autostart issues, and also to have logging, etc, configure as a user service.:
mkdir -p ~/.config/systemd/user
kate ~/.config/systemd/user/gnome-keyring.service
Enter the following into the file we just opened/created with kate ⬇️
[Unit]
Description=GNOME Keyring Secrets Daemon
After=graphical.target
[Service]
Type=simple
ExecStart=/usr/bin/gnome-keyring-daemon --start --components=secrets
Restart=on-failure
Environment=DISPLAY=:0
Environment=XDG_RUNTIME_DIR=%h/.cache/keyring
[Install]
WantedBy=default.target
**Save The File ** 
Now:
systemctl --user daemon-reload
#Restarts the daemon to recognize the new service.
systemctl --user enable gnome-keyring.service
#Enables the service, at a user level.
systemctl --user start gnome-keyring.service
#Starts the service
Then:
systemctl --user status gnome-keyring.service
Confirm the Service is loaded, enabled, and, started
in 'System Setting>KDE Wallet>', Disable the "Use KWallet for the Secret Service Interface" option
REBOOT! (Logout and back in, at minimum)