Hi,
I would like to add a social-media link for youtube.
First I add in register-admin-options.php
$avia_elements[] = array(
"name" => "Your YouTube page/group/account",
"desc" => "Enter the url to your YouTube page or channel. If you leave this blank the facebook link in your sidebar of your site wont be displayed.",
"id" => "youtube",
"slug" => "contact",
"std" => "http://www.youtube.de",
"type" => "text");
and in the sidebar.php
if($youtube = avia_get_option('youtube')) echo "<li class='youtube'><a href='".$youtube."'>youtube</a>";
and in the css/minimal-skin.css
.social_bookmarks .youtube a{background: transparent url(../images/skin-minimal/icons-rounded-youtube.png) 0 0 no-repeat;}
after this I upload the icon.
It runs, but is it right, that this add-on is lost, if there will be a update of the theme?














