Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Site description

troxiktroxik New
edited August 2012 in Vanilla 2.0 - 2.8

Hello !

How can i change site description, currently it is : Welcome to my Vanilla 2 Forum.
I already changed keywords ...

Thankyou ^^

Answers

  • I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Btw, sorry for doublepost, i ment meta description.

  • I don't have matches at the database.

  • troxiktroxik New
    edited August 2012

    Site http://www.mmoaim.com have the same thing, check here :

    http://mysitecost.com/mmoaim.com

    Check the :

    Website description:
    Welcome to my Vanilla 2 Forum.

  • peregrineperegrine MVP
    edited August 2012

    edited: I noticed what you mean.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • I posted the more detailed info ;)

  • peregrineperegrine MVP
    edited August 2012

    Now that you edited

    I suppose you could just put a meta name in default.master.php or default.master.tpl of your theme.

    <meta name="description" content="this line here maybe would be want you want to add.">

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • peregrineperegrine MVP
    edited August 2012

    .

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • $Configuration['Garden']['Title'] = "MMOAIM - Let's Discuss online games";

  • I don't know where to find this string (description), maybe it's in theme or plugin XD

  • peregrineperegrine MVP
    edited August 2012

    @troxik
    I edited above. see

    http://vanillaforums.org/discussion/comment/166973/#Comment_166973

    I think the site you are referring to if you don't have an explicit meta description it picks one for you.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Um ... i am editing the main theme (the default one).
    Can i find this file at applications->vanilla or where can it be ?

  • peregrineperegrine MVP
    edited August 2012

    best to create your own theme and modify default.master.php ot .tpl

    you could get the default theme info from

    var/www/vanilla/applications/dashboard/views/default.master.php

    and read the theme creation documentation written by 422 and the docs.

    good luck.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


    <?php $this->RenderAsset('Head'); ?>

    " class="<?php echo $this->CssClass; ?>">

    "><?php echo Gdn_Theme::Logo(); ?>

    <?php $Session = Gdn::Session(); if ($this->Menu) { $this->Menu->AddLink('Dashboard', T('Dashboard'), '/dashboard/settings', array('Garden.Settings.Manage')); // $this->Menu->AddLink('Dashboard', T('Users'), '/user/browse', array('Garden.Users.Add', 'Garden.Users.Edit', 'Garden.Users.Delete')); $this->Menu->AddLink('Activity', T('Activity'), '/activity'); if ($Session->IsValid()) { $Name = $Session->User->Name; $CountNotifications = $Session->User->CountNotifications; if (is_numeric($CountNotifications) && $CountNotifications > 0) $Name .= ' '.$CountNotifications.''; if (urlencode($Session->User->Name) == $Session->User->Name) $ProfileSlug = $Session->User->Name; else $ProfileSlug = $Session->UserID.'/'.urlencode($Session->User->Name); $this->Menu->AddLink('User', $Name, '/profile/'.$ProfileSlug, array('Garden.SignIn.Allow'), array('class' => 'UserNotifications')); $this->Menu->AddLink('SignOut', T('Sign Out'), SignOutUrl(), FALSE, array('class' => 'NonTab SignOut')); } else { $Attribs = array(); if (SignInPopup() && strpos(Gdn::Request()->Url(), 'entry') === FALSE) $Attribs['class'] = 'SignInPopup'; $this->Menu->AddLink('Entry', T('Sign In'), SignInUrl($this->SelfUrl), FALSE, array('class' => 'NonTab'), $Attribs); } echo $this->Menu->ToString(); } ?>
    <?php $Form = Gdn::Factory('Form'); $Form->InputPrefix = ''; echo $Form->Open(array('action' => Url('/search'), 'method' => 'get')), $Form->TextBox('Search'), $Form->Button('Go', array('Name' => '')), $Form->Close(); ?>
    <?php $this->RenderAsset('Content'); ?>
    <?php $this->RenderAsset('Panel'); ?>
    <?php $this->RenderAsset('Foot'); echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div'); ?>
    <?php $this->FireEvent('AfterBody'); ?>
    


  • <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


    <?php $this->RenderAsset('Head'); ?>

    " class="<?php echo $this->CssClass; ?>">

    "><?php echo Gdn_Theme::Logo(); ?>

    <?php $Session = Gdn::Session(); if ($this->Menu) { $this->Menu->AddLink('Dashboard', T('Dashboard'), '/dashboard/settings', array('Garden.Settings.Manage')); // $this->Menu->AddLink('Dashboard', T('Users'), '/user/browse', array('Garden.Users.Add', 'Garden.Users.Edit', 'Garden.Users.Delete')); $this->Menu->AddLink('Activity', T('Activity'), '/activity'); if ($Session->IsValid()) { $Name = $Session->User->Name; $CountNotifications = $Session->User->CountNotifications; if (is_numeric($CountNotifications) && $CountNotifications > 0) $Name .= ' '.$CountNotifications.''; if (urlencode($Session->User->Name) == $Session->User->Name) $ProfileSlug = $Session->User->Name; else $ProfileSlug = $Session->UserID.'/'.urlencode($Session->User->Name); $this->Menu->AddLink('User', $Name, '/profile/'.$ProfileSlug, array('Garden.SignIn.Allow'), array('class' => 'UserNotifications')); $this->Menu->AddLink('SignOut', T('Sign Out'), SignOutUrl(), FALSE, array('class' => 'NonTab SignOut')); } else { $Attribs = array(); if (SignInPopup() && strpos(Gdn::Request()->Url(), 'entry') === FALSE) $Attribs['class'] = 'SignInPopup'; $this->Menu->AddLink('Entry', T('Sign In'), SignInUrl($this->SelfUrl), FALSE, array('class' => 'NonTab'), $Attribs); } echo $this->Menu->ToString(); } ?>
    <?php $Form = Gdn::Factory('Form'); $Form->InputPrefix = ''; echo $Form->Open(array('action' => Url('/search'), 'method' => 'get')), $Form->TextBox('Search'), $Form->Button('Go', array('Name' => '')), $Form->Close(); ?>
    <?php $this->RenderAsset('Content'); ?>
    <?php $this->RenderAsset('Panel'); ?>
    <?php $this->RenderAsset('Foot'); echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div'); ?>
    <?php $this->FireEvent('AfterBody'); ?>
    


  • <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


    <?php $this->RenderAsset('Head'); ?>

    " class="<?php echo $this->CssClass; ?>">

    "><?php echo Gdn_Theme::Logo(); ?>

    <?php $Session = Gdn::Session(); if ($this->Menu) { $this->Menu->AddLink('Dashboard', T('Dashboard'), '/dashboard/settings', array('Garden.Settings.Manage')); // $this->Menu->AddLink('Dashboard', T('Users'), '/user/browse', array('Garden.Users.Add', 'Garden.Users.Edit', 'Garden.Users.Delete')); $this->Menu->AddLink('Activity', T('Activity'), '/activity'); if ($Session->IsValid()) { $Name = $Session->User->Name; $CountNotifications = $Session->User->CountNotifications; if (is_numeric($CountNotifications) && $CountNotifications > 0) $Name .= ' '.$CountNotifications.''; if (urlencode($Session->User->Name) == $Session->User->Name) $ProfileSlug = $Session->User->Name; else $ProfileSlug = $Session->UserID.'/'.urlencode($Session->User->Name); $this->Menu->AddLink('User', $Name, '/profile/'.$ProfileSlug, array('Garden.SignIn.Allow'), array('class' => 'UserNotifications')); $this->Menu->AddLink('SignOut', T('Sign Out'), SignOutUrl(), FALSE, array('class' => 'NonTab SignOut')); } else { $Attribs = array(); if (SignInPopup() && strpos(Gdn::Request()->Url(), 'entry') === FALSE) $Attribs['class'] = 'SignInPopup'; $this->Menu->AddLink('Entry', T('Sign In'), SignInUrl($this->SelfUrl), FALSE, array('class' => 'NonTab'), $Attribs); } echo $this->Menu->ToString(); } ?>
    <?php $Form = Gdn::Factory('Form'); $Form->InputPrefix = ''; echo $Form->Open(array('action' => Url('/search'), 'method' => 'get')), $Form->TextBox('Search'), $Form->Button('Go', array('Name' => '')), $Form->Close(); ?>
    <?php $this->RenderAsset('Content'); ?>
    <?php $this->RenderAsset('Panel'); ?>
    <?php $this->RenderAsset('Foot'); echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div'); ?>
    <?php $this->FireEvent('AfterBody'); ?>
    


Sign In or Register to comment.