WEEKLY TECH ROUNDUP
2021 – Moving WordPress from GoDaddy to Siteground
This won't apply to all installs (for instance this may not work with multi-site WP - idk), but might help you if you're having...
HELP FOR ADMINS
INDUSTRY INSIDE INFO
Windows Side by Side Side-by-side SxS log error
Computer had errors in Event Log such as: Generate Activation Context failed for C:WINDOWSWinSxSx86_Microsoft.VC80.MFC_1fc8b3b9a1e18e3b_8.0.50727.163_x-ww_39049d00MFC80U.DLL. Reference error message: The operation completed successfully.
Installed Visual C++ 2005 redistrubutible...
POPULAR VIDEO
Remove a CSS File from a webpage dynamically
It's actually quite easy to remove a CSS or JS file from a webpage dynamically, it's a little Javascript function:
function removejscssfile(filename, filetype)
{
var targetelement=(filetype=="js")? "script"...