Hello people! How can I add custom/own codes to ?
Concretly this is my code:
<link href='http://fonts.googleapis.com/css?family=Fredoka+One|Gloria+Hallelujah|Indie+Flower' rel='stylesheet' type='text/css'>
Thanks!
Theme hooks
grep is your friend.
I use default theme, and this isn't contains any file, just favicon.png.
Make a copy of the theme and rename it update the about, then select the theme.
create a file called class.mythemehooks.php
<?php defined('APPLICATION') or die(); class MyThemeHooks extends Gdn_Plugin{ public function Base_BeforeAddCss_Handler($Sender){ $Sender->Head->AddTag('link', array('rel' => 'stylesheet', 'type' => 'text/css', 'href' => 'http://fonts.googleapis.com/css?family=Fredoka+One|Gloria+Hallelujah|Indie+Flower', 'media' => 'all')); } }
I guess you have to add the setup function to the class
public function Setup () { }
Its ok, thank you!
You can use a plugin for favicons
http://vanillaforums.org/addon/favicon-plugin
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Comments
Theme hooks
grep is your friend.
I use default theme, and this isn't contains any file, just favicon.png.
Make a copy of the theme and rename it update the about, then select the theme.
create a file called class.mythemehooks.php
grep is your friend.
I guess you have to add the setup function to the class
Its ok, thank you!
You can use a plugin for favicons
http://vanillaforums.org/addon/favicon-plugin
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌