• Resolved bugrevealingbme

    (@bugrevealingbme)


    I don’t want the dark theme to be activated in this template. Only use the normal (light) theme. How can I do ?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author markoarula

    (@markoarula)

    Unfortunately, the plugin still has no option for this.

    But you can try something like this, with small amount of the CSS:

    – this will hide Night button only on that specific template (if you want to hide it):

    body.page-template-gamearea .wpnm-button {
      display: none;
    }

    – if WP Night Mode is turned on by the user, you can reset text and background colors with CSS, something like this:

    body.wp-night-mode-on.page-template-gamearea .entry-header .jeg_post_title {
      color: #011627 !important;
    }
    
    body.wp-night-mode-on.page-template-gamearea .jeg_mobile_bottombar {
      background: transparent;
    }

    As soon as I catch some time, I’ll add this option to the plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Pushing normal mode in custom template’ is closed to new replies.