Change a few things on my landing page

https://screenshots.firefox.com/XK22ngYSEbP2KPPP/www.jounaai.com

Hello everyone! I want to delete the sections in my navbar but dont want the deletion to effect my other pages. I also want to change the color of the login/register widget as well as place a welcome note in the body of the page(Delete the "Latest Activity/No Activity wording). How do I go about doing this? Thank ya kindly :)

Blessings,

Mekaboo

  • The way I do a custom login page is (Elgg 2.x):

    1. Create an index.php file in my custom plugin. Example /mod/myloginpage/index.php. This the file where you can have your own html code for the home page.

    2. Add the lines in my start.php file

    function custom_index_init() {
      // Replace the default index page
      elgg_register_page_handler('', 'custom_index');
    }
    
    function custom_index() {
      if (!include_once(dirname(__FILE__) . "/index.php")) {
       return false;
      }
    return true;
    }
  • Thank ya thank ya Sir @Rohit xoxoxo!!!

Beginning Developers

Beginning Developers

This space is for newcomers, who wish to build a new plugin or to customize an existing one to their liking