Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorpandianbe
    • CommentTimeSep 2nd 2008
     
    How to set the collections descriptions as the title?

    I need to set the collections detailed description as Title ? how can i get the collection desc.

    i couldnt get the desc from plogger_get_collection_description() in generate_title() function.

    Please help me.

    Thanks !!
    Pandian
    • CommentAuthorPieperLy
    • CommentTimeSep 2nd 2008
     
    on svn edit the plog-functions.php

    ...

    function generate_title() {
    switch ($GLOBALS['plogger_level']) {
    case 'collection':
    $row = get_collection_by_id($GLOBALS['plogger_id']);

    $breadcrumbs = SmartStripSlashes($row["name"]);

    change to:
    ...
    function generate_title() {
    switch ($GLOBALS['plogger_level']) {
    case 'collection':
    $row = get_collection_by_id($GLOBALS['plogger_id']);

    $breadcrumbs = SmartStripSlashes($row["description"]);

    reagards from germany
    uwe
    • CommentAuthorpandianbe
    • CommentTimeSep 2nd 2008
     
    Thanks a lot Working fine :-)