tomgelder
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Yep that was it, needed to update.
Thanks!- This reply was modified 6 years, 11 months ago by tomgelder.
Forum: Fixing WordPress
In reply to: Calls to admin-ajax.php Getting My Site BlockedThanks for the response, Otto.
That’s about what I was starting to figure. My host being too overprotective. I’ll let them know what’s up.
Forum: Fixing WordPress
In reply to: Determine if a site is using a custom menuThank you very much Charles!
Forum: Themes and Templates
In reply to: Changing background-color from style.cssForum: Themes and Templates
In reply to: Changing background-color from style.cssGot it answered over on Stack Exchange.
I quote from user s_ha_dum:It sounds like you just need to remove support for the custom background color.
remove_theme_support( 'custom-background' );You will probably need to hook it to get it to run after the parent functions.php
function disable_bg_wpse_97248() { remove_theme_support( 'custom-background' ); } add_action('after_setup_theme','disable_bg_wpse_97248',100)I just added that function to my child’s functions.php and it worked like a charm.
Viewing 5 replies - 1 through 5 (of 5 total)