Theme settings keep getting reset/erased

I bought a theme from Themeforest called Anan. I am currently hosting the site on Bluehost.

Here’s the problem: every few days the theme settings keep getting erased (reset) so I have to re-upload logos and background images and it’s driving me crazy. 🙂

Read More

Here’s a copy of the functions.php file in a text file in my public dropbox folder if anyone can look at it:
http://dl.dropbox.com/u/4016505/functions.txt

Thanks for the help!

Related posts

Leave a Reply

1 comment

  1. Try changing this line:

    if(isset($_POST['field_id']) && !empty($_POST['field_id']))

    to:

    if(isset($_POST['field_id']) && !empty($_POST['field_id']) && current_user_can('update_core'))

    and:

    function pp_add_admin() {

    to:

    function pp_add_admin() {
    if(!current_user_can('update_core')) return;
    

    and ask for a refund 🙂