Kickin' Code

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

  • 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

Activity

  • Kickin' Code added a new discussion topic Customize Header Facebook Theme in the group Beginning Developers
    I am familiar with PHP, mySQL. but no expert thats why I'm here.  Came from a .net developement platform. Here is my code for the header.php   <?php$site = elgg_get_site_entity();echo "<h1 id=\"facebook-header-logo\">";echo...
    • to hide the login just command the line

      //echo elgg_view_form('login', array('id' => 'facebook-header-login'));

      and to add image i.e a banner in the header, you can write like this also

      echo "<img src=\"{$vars['url']}mod/plugin_name/graphics/banner.png\" border=\"0\" />";

      or else you can even try out in this way by closing the php tag of above line using ?>

      and write as

      <img src="<?php echo $vars[url]; ?>mod/plugin_name/graphics/banner.png">

      Am not sure on this.. but this may help you... you can write either directly in php or inserting php in html tag too...