Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter nurre

    (@nurre)

    I also want to hide sunrise from the table. Jazaakum Allaah khayran

    Plugin Author mmrs151

    (@mmrs151)

    Unfortunately you can not remove highlight or sunrise.

    You can however play with the theme to disappear highlight.

    To remove the sunrise you will need to play with the code to remove them based on what orientation you are using.

    Mustafiz.

    You could try adding a HTML widget with the following pasted in. Uses javascript to find Sunrise and hide the row

    <script>
    
     function onLoad() {
      jQuery("tr:contains('Sunrise')").hide();
      };
    
      if (window.addEventListener){
        window.addEventListener('load', onLoad)
      }else{
        window.attachEvent('onload', onLoad)
      }
    
    </script>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Highlight on table’ is closed to new replies.