Solved:
To delete the spinner, use the following CSS Rule:
#revert-loader-toolbar {
display: none!important;
}
Note: The above will speed up dramatically your navigation between tabs.
To change the spinner:
- Upload your desired spinner (i.e., gif image) to your Media Library.
- Copy the spinner File URL generated by your Media Library.
- Use the following CSS Rule to change the spinner:
#revert-loader-toolbar {
background-image:url(https://www.mysite.com/wp-content/uploads/black-hole-spinner-25x25-1.gif)!important; // use the File URL of your spinner
background-color: transparent!important; // comment out this line to retain original background color
}
Result: https://prnt.sc/rcS39WY9JS82
Note: The above CSS Rules are used to customize your WordPress Admin CSS. Click here for a detailed procedure to implement the above.
Hi @emrevona,
It would be great if you can pin this topic or add it to your plugin’s documentation.
Thank you!