Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3766940
theme customization
Closed

Comments

  • Nikki started the conversation

    (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,599
    PenciDesign replied

    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/

    add_filter( 'theme_mod_penci_dms_enable', function( $value ) {
        if ( is_single() ) {
            return false;
        }
    
        return $value;
    } );

    Regards,
    PenciDesign.

  • Nikki replied

    That worked perfecty, thanks!