• After the WordPress 3.4 upgrade, it killed my background (gave me the white background and nothing in the settings would fix it). Here is how to fix that issue:

    Open up functions.php inside of the grey-opaque theme folder

    Search for this code:

    if(function_exists('get_background_image') && (get_background_image() || get_background_color())) {
    		add_custom_background();
    
    			 This is for ne Navigation
    			add_custom_background('greyopaque_navigation_background_edited');
    		} else {
    			add_custom_background('greyopaque_background');
    		}

    Comment out everything except for add_custom_background();. So when you’re done, you should have this:

    //if(function_exists('get_background_image') && (get_background_image() || get_background_color())) {
    		add_custom_background();
    
    			// This is for ne Navigation
    		//	add_custom_background('greyopaque_navigation_background_edited');
    	//	} else {
    	//		add_custom_background('greyopaque_background');
    	//	}

    basically, just leave add_custom_background(); and get rid of everything else involving the background for now.

    Hope this helps some of you! I was in a panic this morning and figured someone else had to be having the same issues as me!

    http://wordpress.org/extend/themes/grey-opaque/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WordPress 3.4 Upgrade and Grey Opaque Background Issues’ is closed to new replies.