You need to uninstall the driver you installed before. They ship the wrong driver on the factory installation media. It is not the correct driver for this adapter and will not work. It must be removed and the proper driver needs to be installed.
Install the driver for the RTL8188FU adapter:
Install kernel 4.19:
sudo mhwd-kernel -i linux419
Then boot into kernel 4.19.
Press the ESC key repeatedly during boot up to select kernel 4.19 from the grub boot menu.
The following command will install the linux-headers automatically for all installed kernels:
sudo pacman -S $(pacman -Qsq "^linux" | grep "^linux[0-9]*[-rt]*$" | awk '{print $1"-headers"}' ORS=' ')
Command courtesy @dalto
Install the rtl8188fu driver
Follow these instructions to install the rtl8188fu driver:
git clone https://github.com/corneal64/Realtek-USB-Wireless-Adapter-Drivers.git
cd Realtek-USB-Wireless-Adapter-Drivers
sudo dkms add ./rtl8188fu
sudo dkms build rtl8188fu/1.0
sudo dkms install rtl8188fu/1.0
sudo cp ./rtl8188fu/firmware/rtl8188fufw.bin /lib/firmware/rtlwifi/
sudo depmod -a
sudo mkinitcpio -P
Then create the driver options config file:
echo "options rtl8188fu rtw_power_mgnt=0 rtw_enusbss=0" | sudo tee /etc/modprobe.d/rtl8188fu.conf
Then disable MAC Address Randomization with the following command:
echo -e "[device]\nwifi.scan-rand-mac-address=no" | sudo tee /etc/NetworkManager/conf.d/disable-random-mac.conf
After creating the new conf file, reboot both your router and your computer.
Edit: added instructions to install on kernel 5.4 after initial installation on kernel 4.19. This step should not be required for most users.
Boot into 4.19, then uninstall kernel 5.4 with:
sudo mhwd-kernel -r linux54
Then reboot into 4.19.
Then do:
sudo pacman-mirrors -f5 & & sudo pacman -Syyu
Then reboot into kernel 4.19 again.
Once in kernel 4.19 reinstall kernel 5.4
sudo mhwd-kernel -i linux54
This shouldn't be necessary, but do it again anyways.
Install the linux-headers for all installed kernels:
sudo pacman -S $(pacman -Qsq "^linux" | grep "^linux[0-9]*[-rt]*$" | awk '{print $1"-headers"}' ORS=' ')
Then reboot into kernel 5.4 and hopefully your wifi will be working.