Comments Nikki started the conversationNovember 19, 2024 at 5:25pm(Note: theme not installed yet on live cinemontage.org site yet, only on production site)My client purchased your theme and I’m helping them set up the Dark Mode demo. Is it easy on this demo, or on any other to have the home page have a black background and have all the post pages have a white background instead? I see a dark mode/light most feature, but my client wants posts to always be white. Is this an easy change to make? 2,658PenciDesign repliedNovember 20, 2024 at 12:52amHi, You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/ add_filter( 'theme_mod_penci_dms_enable', function( $value ) { if ( is_single() ) { return false; } return $value; } ); Regards,PenciDesign.Nikki repliedNovember 20, 2024 at 5:39pmThat worked perfecty, thanks! Sign in to reply ...
(Note: theme not installed yet on live cinemontage.org site yet, only on production site)
My client purchased your theme and I’m helping them set up the Dark Mode demo.
Is it easy on this demo, or on any other to have the home page have a black background and have all the post pages have a white background instead?
I see a dark mode/light most feature, but my client wants posts to always be white. Is this an easy change to make?
Hi,
You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/
Regards,
PenciDesign.
That worked perfecty, thanks!