• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-WunderGround - Display hourly only?

Scheduled Pinned Locked Moved Troubleshooting
11 Posts 2 Posters 7.8k Views 2 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    Camelblack
    last edited by Feb 28, 2017, 7:59 PM

    Hi is it possible to only display hourly forecasts and hide daily?

    I saw there was a fade option, but I was unable to hide the daily forecast.

    S 1 Reply Last reply Feb 28, 2017, 10:11 PM Reply Quote 0
    • S Offline
      strawberry 3.141 Project Sponsor Module Developer @Camelblack
      last edited by Feb 28, 2017, 10:11 PM

      @Camelblack vertical or horizontal layout?

      Please create a github issue if you need help, so I can keep track

      C 1 Reply Last reply Feb 28, 2017, 10:19 PM Reply Quote 0
      • C Offline
        Camelblack @strawberry 3.141
        last edited by Camelblack Feb 28, 2017, 10:22 PM Feb 28, 2017, 10:19 PM

        @strawberry-3.141 preferably horizontal. Is there a way to fully hide days from vertical (not just fade them) ?
        I see the minimum value on days is 1.

        fcdaycount	How many days of forecast to return. Specified by config.js
        
        Possible values: 1 - 10 
        Default value: 7 (7 days) 
        This value is optional. By default the wunderground module will return 7 days.
        
        S 1 Reply Last reply Feb 28, 2017, 10:31 PM Reply Quote 0
        • S Offline
          strawberry 3.141 Project Sponsor Module Developer @Camelblack
          last edited by Feb 28, 2017, 10:31 PM

          @Camelblack custom.css

          .MMM-WunderGround table.small:nth-of-type(3),
          .MMM-WunderGround hr.hrDivider:nth-of-type(3) {
              display:none;
          }
          

          Please create a github issue if you need help, so I can keep track

          C 1 Reply Last reply Mar 7, 2017, 7:50 PM Reply Quote 1
          • C Offline
            Camelblack @strawberry 3.141
            last edited by Camelblack Mar 7, 2017, 8:10 PM Mar 7, 2017, 7:50 PM

            @strawberry-3.141 Thank you very much!

            Unfortunately it seems that I didn’t implement it correctly.

            /*****************************************************
             * Magic Mirror                                      *
             * Custom CSS                                        *
             *                                                   *
             * By Michael Teeuw http://michaelteeuw.nl           *
             * MIT Licensed.                                     *
             *                                                   *
             * Add any custom CSS below.                         *
             * Changes to this files will be ignored by GIT. *
             *****************************************************/
            
             body {
            .MMM-WunderGround table.small:nth-of-type(3),
            .MMM-WunderGround hr.hrDivider:nth-of-type(3) {
                display:none;
            }
            

            Isn’t this how it supposed to look in custom.css?

            S 1 Reply Last reply Mar 7, 2017, 8:51 PM Reply Quote 0
            • S Offline
              strawberry 3.141 Project Sponsor Module Developer @Camelblack
              last edited by Mar 7, 2017, 8:51 PM

              @Camelblack no remove body {

              Please create a github issue if you need help, so I can keep track

              C 1 Reply Last reply Mar 7, 2017, 9:23 PM Reply Quote 0
              • C Offline
                Camelblack @strawberry 3.141
                last edited by Mar 7, 2017, 9:23 PM

                @strawberry-3.141

                /*****************************************************
                 * Magic Mirror                                      *
                 * Custom CSS                                        *
                 *                                                   *
                 * By Michael Teeuw http://michaelteeuw.nl           *
                 * MIT Licensed.                                     *
                 *                                                   *
                 * Add any custom CSS below.                         *
                 * Changes to this files will be ignored by GIT. *
                 *****************************************************/
                
                .MMM-WunderGround table.small:nth-of-type(3),
                .MMM-WunderGround hr.hrDivider:nth-of-type(3) {
                    display:none;
                }
                

                It looks like this now, but the mirror is still displaying 4 days, do I need to change any other files than custom.css?

                S 1 Reply Last reply Mar 7, 2017, 9:31 PM Reply Quote 0
                • S Offline
                  strawberry 3.141 Project Sponsor Module Developer @Camelblack
                  last edited by Mar 7, 2017, 9:31 PM

                  @Camelblack can you share your config

                  Please create a github issue if you need help, so I can keep track

                  C 1 Reply Last reply Mar 7, 2017, 10:08 PM Reply Quote 0
                  • C Offline
                    Camelblack @strawberry 3.141
                    last edited by Camelblack Mar 7, 2017, 10:09 PM Mar 7, 2017, 10:08 PM

                    @strawberry-3.141 Sure:)

                    {
                        module: 'MMM-WunderGround',
                        position: 'top_right',
                        config: {
                            apikey: 'XXXXXXXX', // private; don't share!
                            pws: 'XXXX', //XXXX
                            hourly: '1',
                            fctext: '1',
                            fcdaycount: "3",
                            fcdaystart: "0",
                            hourlyinterval: "4",
                            hourlycount: "4",
                            alerttime: 10000,
                            alerttruncatestring: "english:",
                        roundTmpDecs: 1,
                        UseCardinals: 0,
                        layout: "vertical",
                        sysstat: 0
                        }
                    },
                    
                    
                    S 1 Reply Last reply Mar 8, 2017, 10:48 AM Reply Quote 0
                    • S Offline
                      strawberry 3.141 Project Sponsor Module Developer @Camelblack
                      last edited by Mar 8, 2017, 10:48 AM

                      @Camelblack that explains it you’re using vertical, last time i asked you said you want to use horizontal

                      Please create a github issue if you need help, so I can keep track

                      C 1 Reply Last reply Mar 8, 2017, 9:06 PM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        7/11
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy