Hello. I want to add a twitter button and facebook button in the footer (bottom right side) of my page. Where do i place the code for this?
Thanks!
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Biddum1@Biddum1
Biddum1 - 0 likes
- Matt Beckett@Beck24
Matt Beckett - 0 likes
- Biddum1@Biddum1
Biddum1 - 0 likes
- Biddum1@Biddum1
Biddum1 - 0 likes
You must log in to post replies.current footer.php looks like this:
<?php
echo elgg_view_menu('footer', array('sort_by' => 'priority', 'class' => 'elgg-menu-hz'));
echo '<div class="mts clearfloat float-alt">';
echo '</div>';
If you want to add it to the menu you can use elgg_register_menu_item('footer', $array)
Look in the docs to see what your $array should contain.
If you just want to add markup after the footer, you can extend the view:
elgg_extend_view('page/elements/footer', 'myplugin/footer');
Then place your code in views/default/myplugin/footer.php
well currently I have the 'Pages' plugin, so i was wondering if there was a quick and simple way to modifiy it from there
www.idrnights.com bottom right corner in footer is what im talking about, under the links
Thanks :)
and i want to put these buttons under the RSS button in the sidebar... any help?
thanks!