If possible, please PM me your ticket number.
What is the name of the WHM theme being used by the reseller account?
For reference, the WHM theme may be defined or viewed manually; the file that stores the WHM theme is located as follows:
For root:
/root/.whmtheme
For resellers (where "username" is that of the reseller):
/home/username/.whmtheme
A command such as "cat" could be used to view the theme:
Code:
# cat /root/.whmtheme
# cat /home/username/.whmtheme
To set the WHM theme back to the default, you could use the following:
Code:
# echo "x" > /root/.whmtheme
# echo "x" > /home/username/.whmtheme
To locate and view defined WHM themes for all resellers, "find" could be used along with "grep" as seen in the following example:
Code:
# find /home -maxdepth 2 -type f -name ".whmtheme" -exec grep -H "" '{}' \;
If there is no file named ".whmtheme" in the reseller user's home directory, then the reseller user may not have attempted changing the theme and so the default should be in-use.